summaryrefslogtreecommitdiff
path: root/db/migrate/20201203123524_add_domain_enum_to_alerts.rb
blob: f1dec91a346dd3a5fad4f7333ec294226c9d7853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class AddDomainEnumToAlerts < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      add_column :alert_management_alerts, :domain, :integer, limit: 2, default: 0
    end
  end

  def down
    with_lock_retries do
      remove_column :alert_management_alerts, :domain, :integer, limit: 2
    end
  end
end