jendiamond / railsgirls-signup

https://railsgirls-signup.herokuapp.com
3 stars 3 forks source link

Delete unusable fields from Question Model #38

Closed jendiamond closed 8 years ago

jendiamond commented 8 years ago

Run this:

$ rails g migration remove_columns_from_questions

It will create this:

class RemoveColumnsFromQuestions < ActiveRecord::Migration[5.0]
  def change
  end
end

Change it to this:

class RemoveColumnsFromQuestions < ActiveRecord::Migration[5.0]
  def change
    remove_column :questions, :boolean_question
    remove_column :questions, :string_question
    remove_column :questions, :text_question
    remove_column :questions, :integer_question
  end
end