class CreateScheduledReportsNotificationGroups < ActiveRecord::Migration[6.0]
  def change
    create_table :scheduled_reports_notification_groups do |t|
      t.integer :scheduled_report_id
      t.integer :notification_group_id
    end
  end
end
