Ruckusing_Adapter_Sqlite3_Base::remove_column PHP Method

remove_column() public method

public remove_column ( string $table_name, string $column_name )
$table_name string
$column_name string
    public function remove_column($table_name, $column_name)
    {
        $this->log_unsupported_feature(__FUNCTION__);
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * Remove a column
  *
  * @param string $table_name  the name of the table
  * @param string $column_name the column name
  *
  * @return boolean
  */
 public function remove_column($table_name, $column_name)
 {
     return $this->_adapter->remove_column($table_name, $column_name);
 }