class ActiveRecord::ConnectionAdapters::Table

def remove(*column_names)

t.remove(:qualification, :experience)
t.remove(:qualification)
===== Examples
Removes the column(s) from the table definition.
def remove(*column_names)
  @base.remove_column(@table_name, column_names)
end