class CreateInterviewQuestions < ActiveRecord::Migration[7.0]
  def change
    create_table :interview_questions do |t|
      t.integer :respondent_category_id
      t.text :question

      t.timestamps
    end
  end
end
