Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20221228063845_add_incident_events_to_integrations.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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