Files
FHC-Core/application/models/system/App_model.php
T

15 lines
190 B
PHP

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