예제 #1
0
파일: Base.php 프로젝트: azema/phigrate
 /**
  * remove column
  *
  * @param string $tableName  The table name
  * @param string $columnName The column name
  *
  * @return boolean
  */
 public function removeColumn($tableName, $columnName)
 {
     return $this->_adapter->removeColumn($tableName, $columnName);
 }