class AddGroupableAndAllDataToInsightSummaries < ActiveRecord::Migration[7.0]
  def change
    add_reference :insight_summaries, :groupable, polymorphic: true, index: true

    add_column :insight_summaries, :all_data, :boolean, default: false
  end
end
