예제 #1
0
파일: model.php 프로젝트: pnixx/boot
 /**
  * Изменение имени колонки
  * @param $column
  * @param $new_name
  * @internal param $table
  */
 public function rename_column($column, $new_name)
 {
     $this->_db->rename_column($this->table, $column, $new_name);
 }