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

20210721174411_add_is_removed_to_escalation_rules.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00af9414ab7b0afe832eff61150ef43929708946 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddIsRemovedToEscalationRules < ActiveRecord::Migration[6.1]
  def change
    add_column :incident_management_escalation_rules, :is_removed, :boolean, null: false, default: false
  end
end