Newer
Older
dmpopidor / db / migrate / 20150415150436_remove_fields_from_questions.rb
class RemoveFieldsFromQuestions < ActiveRecord::Migration
  def change
    remove_column :questions, :question_type
    remove_column :questions, :multiple_choice  
    remove_column :questions, :multiple_permitted
    remove_column :questions, :is_expanded
    remove_column :questions, :is_text_field
  end

end