Files
FHC-Core/application/models/system/UDF_model.php
T
2017-04-20 18:28:20 +02:00

15 lines
238 B
PHP

<?php
class UDF_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'system.tbl_udf';
$this->pk = array('schema', 'table');
$this->hasSequence = false;
}
}