Answers for "how to remove a column in rails"

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

Code answers related to "how to remove a column in rails"

Browse Popular Code Answers by Language