Newer
Older
dmpopidor / db / migrate / 20130717125748_add_multiple_choice_and_multiple_permitted_and_is_expanded_to_questions.rb
class AddMultipleChoiceAndMultiplePermittedAndIsExpandedToQuestions < ActiveRecord::Migration
  def change
    add_column :questions, :multiple_choice, :boolean
    add_column :questions, :multiple_permitted, :boolean
    add_column :questions, :is_expanded, :boolean
  end
end