What\'s the syntax for dropping a database table column through a Rails migration?
To remove the column from table you have to run following migration:
rails g migration remove_column_name_from_table_name column_name:data_type
Then run command:
rake db:migrate