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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210201034649_add_active_periods_to_on_call_rotations.rb')
-rw-r--r--db/migrate/20210201034649_add_active_periods_to_on_call_rotations.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/db/migrate/20210201034649_add_active_periods_to_on_call_rotations.rb b/db/migrate/20210201034649_add_active_periods_to_on_call_rotations.rb
deleted file mode 100644
index 714187f60e0..00000000000
--- a/db/migrate/20210201034649_add_active_periods_to_on_call_rotations.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-# frozen_string_literal: true
-
-class AddActivePeriodsToOnCallRotations < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def change
- add_column :incident_management_oncall_rotations, :active_period_start, :time, null: true
- add_column :incident_management_oncall_rotations, :active_period_end, :time, null: true
- end
-end