示例#1
0
文件: Base.php 项目: azema/phigrate
 /**
  * add column
  *
  * @param string $tableName  The table name
  * @param string $columnName The column name
  * @param string $type       The type generic of the column
  * @param array  $options    The options definition of the column
  *
  * @return boolean
  */
 public function addColumn($tableName, $columnName, $type, $options = array())
 {
     return $this->_adapter->addColumn($tableName, $columnName, $type, $options);
 }