Newer
Older
dmpopidor / db / migrate / 20130717125748_add_multiple_choice_and_multiple_permitted_and_is_expanded_to_questions.rb
@Marta Ribeiro Marta Ribeiro on 3 Jun 2016 278 bytes DMPonline4 - RAILS 4.0 (#4)
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