rails g migration remove column code example
Example 1: how to remove columns from rails
rails generate migration RemoveFieldNameFromTableName field_name:datatype
remove_column :table_name, :column_name
Example 2: rails remove column
remove_column :table_name, :column_name
Example 3: rails g migration remove default
change_column_default(:users, :email, nil)