Files
FHC-Core/application/models/system/App_model.php
T
2016-06-29 08:41:02 +02:00

16 lines
191 B
PHP

<?php
class App_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'system.tbl_app';
$this->pk = 'app';
}
}