What\'s the syntax for dropping a database table column through a Rails migration?
Simply, You can remove column
remove_column :table_name, :column_name
For Example,
remove_column :posts, :comment