class AddInsightReportIdToInterviewInsights < ActiveRecord::Migration[7.0]
  def change
    add_column :interview_insights, :insights_report_id, :integer
    add_index :interview_insights, :insights_report_id
  end
end
