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