class CreateSectionSummaries < ActiveRecord::Migration[7.0]
  def change
    create_table :section_summaries do |t|
      t.integer :master_section_id
      t.integer :groupable_id
      t.string :groupable_type
      t.index :master_section_id
      t.index [:groupable_id, :groupable_type]
      

      t.text :summary

      t.timestamps
    end
  end
end
