rails migration to remove all the fields and add new column code example
Example 1: rails migration remove column
rails g migration Remove..From.. col1:type col2:type col3:type
#Exemple :
rails g migration RemoveCountryFromSampleApps country:string
Example 2: rails migration remove colum
remove_column :table_name, :column_name