Beispiel #1
0
 /**
  * Create table
  * @param $table
  * @param $column
  * @param null $pkey
  * @param null $ukey
  * @return \Model
  */
 public function create_table($table, $column, $pkey = null, $ukey = null)
 {
     return $this->_db->create_table($table, $column, $pkey, $ukey);
 }