migration remove column rails code example
Example 1: rails remove column from model
class RemoveCountryFromSampleApps < ActiveRecord::Migration[5.0]
def change
remove_column :sample_apps, :country, :string
end
end
Example 2: rails migration remove column
rails g migration Remove..From.. col1:type col2:type col3:type
#Exemple :
rails g migration RemoveCountryFromSampleApps country:string
Example 3: rails remove column
remove_column :table_name, :column_name