Files
FHC-Core/application/models/crm/Prestudent_model.php
T

14 lines
213 B
PHP

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