class CreateQuantifiableQuestions < ActiveRecord::Migration[7.0]
  def change
    create_table :quantifiable_questions do |t|
      t.string :question
      t.integer :respondent_category_id
      t.jsonb :answer

      t.timestamps
    end
  end
end
