class CreateInterviewInsights < ActiveRecord::Migration[7.0]
  def change
    create_table :interview_insights do |t|
      t.integer :interview_question_id
      t.integer :respondent_id
      t.text :insight

      t.timestamps
    end
  end
end
