Files
FHC-Core/application/models/codex/Nation_model.php
T
2024-10-17 15:34:00 +02:00

15 lines
189 B
PHP

<?php
class Nation_model extends DB_Model
{
/**
*
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_nation';
$this->pk = 'nation_code';
}
}