class CreateAlertsNotificationGroups < ActiveRecord::Migration[6.0]
  def change
    create_table :alerts_notification_groups do |t|
      t.integer :alert_id
      t.integer :notification_group_id
    end
  end
end
