Answers for "rails migration to clear a column"

1

rails remove column from model

class RemoveCountryFromSampleApps < ActiveRecord::Migration[5.0]
  def change
    remove_column :sample_apps, :country, :string
  end
end
Posted by: Guest on October-09-2020
0

rails migration remove column

rails g migration Remove..From.. col1:type col2:type col3:type

#Exemple :

rails g migration RemoveCountryFromSampleApps country:string
Posted by: Guest on February-04-2021

Code answers related to "rails migration to clear a column"

Browse Popular Code Answers by Language