Newer
Older
dmpopidor / db / migrate / 20200204102955_add_structured_to_question_formats.rb
@Quentin SONREL Quentin SONREL on 4 Feb 2020 171 bytes Changed how structured answers are handled in DB
class AddStructuredToQuestionFormats < ActiveRecord::Migration
  def change
    add_column :question_formats, :structured, :boolean, null: false, default: false
  end
end