Fixed models

This commit is contained in:
Paolo
2019-04-26 12:43:51 +02:00
parent 3a692f8a5e
commit c84c484a2a
147 changed files with 2132 additions and 46 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
class Nation_model extends DB_Model
{
/**
*
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_nation';
$this->pk = 'nation_code';
}
}