예제 #1
0
파일: model.php 프로젝트: pnixx/boot
 /**
  * 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);
 }