summaryrefslogtreecommitdiff
path: root/db/migrate/20221228063845_add_incident_events_to_integrations.rb
blob: 521ffce07245e7f8b7493b1124b2b462cf45e373 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddIncidentEventsToIntegrations < Gitlab::Database::Migration[2.1]
  def change
    add_column :integrations, :incident_events, :boolean, default: false, null: false
  end
end