class CreateCovidAnswerOptions < ActiveRecord::Migration[6.0]
  def change
    create_table :covid_answer_options do |t|
      t.references :option, null: false, foreign_key: { to_table: :covid_form_options }
      t.references :answer, null: false, foreign_key: { to_table: :covid_answers }

      t.timestamps
    end
  end
end
