= private = protected
remove_column(table_name, column_name)
Removes the column from the table definition.
remove_column(:suppliers, :qualification)
# File activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb, line 120 def remove_column(table_name, column_name) execute "ALTER TABLE #{table_name} DROP #{column_name}" end