remove_column(name)
remove the column name from the table.
remove_column(:account_id)
# File activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb, line 384 def remove_column(name) @columns_hash.delete name.to_s end