debian-mirror-gitlab/db/migrate/20221228063845_add_incident_events_to_integrations.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
213 B
Ruby
Raw Normal View History

2023-03-17 16:20:25 +05:30
# 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