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

20200929032729_add_sla_minutes_to_project_incident_management_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2848cdf8fcd1a03e6c0c30297d3b8f5611c6fcf8 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class AddSlaMinutesToProjectIncidentManagementSettings < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :project_incident_management_settings, :sla_timer, :boolean, default: false
    add_column :project_incident_management_settings, :sla_timer_minutes, :integer
  end
end