예제 #1
0
파일: Base.php 프로젝트: azema/phigrate
 /**
  * Remove foreignKey
  *
  * @param string $tableName  The table name to create foreign key
  * @param string $columnName The column name to create foreign key
  * @param string $tableRef   The table name of constrainte
  * @param string $columnRef  The column name of constrainte
  * @param array  $options    The options definition of the foreign key
  *
  * @return boolean
  */
 public function removeForeignKey($tableName, $columnName, $tableRef, $columnRef, $options = array())
 {
     return $this->_adapter->removeForeignKey($tableName, $columnName, $tableRef, $columnRef, $options);
 }