Newer
Older
dmpopidor / db / migrate / 20200120134328_add_structured_to_questions.rb
@Quentin SONREL Quentin SONREL on 20 Jan 2020 158 bytes Added structured schema/answers models and tables
class AddStructuredToQuestions < ActiveRecord::Migration
  def change
    add_column :questions, :structured, :boolean, null: false, default: false
  end
end