Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1.2.6) is shown here.
remove_column(table_name, column_name)
public
Removes the column from the table definition.
Examples
remove_column(:suppliers, :qualification)
# File activerecord/lib/active_record/connection_adapters/frontbase_adapter.rb, line 813
def remove_column(table_name, column_name)
execute "ALTER TABLE #{table_name} DROP #{column_name} RESTRICT"
end