1st release

This commit is contained in:
Paolo
2017-04-20 18:28:20 +02:00
parent e5d483caba
commit 11d3d7d7c0
7 changed files with 278 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<?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;
}
}