Ruckusing_Adapter_Sqlite3_Base::change_column PHP Method

change_column() public method

public change_column ( string $table_name, string $column_name, string $type, array $options = [] )
$table_name string
$column_name string
$type string
$options array
    public function change_column($table_name, $column_name, $type, $options = array())
    {
        $this->log_unsupported_feature(__FUNCTION__);
    }

Usage Example

示例#1
0
 /**
  * Change a column
  *
  * @param string $table_name the name of the table
  * @param string $column_name the column name
  * @param string $type the column type
  * @param array|string $options
  *
  * @return boolean
  */
 public function change_column($table_name, $column_name, $type, $options = array())
 {
     return $this->_adapter->change_column($table_name, $column_name, $type, $options);
 }