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/20200820130839_add_auto_close_incident_to_project_incident_management_settings.rb')
-rw-r--r--db/migrate/20200820130839_add_auto_close_incident_to_project_incident_management_settings.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20200820130839_add_auto_close_incident_to_project_incident_management_settings.rb b/db/migrate/20200820130839_add_auto_close_incident_to_project_incident_management_settings.rb
deleted file mode 100644
index 01aafa6d988..00000000000
--- a/db/migrate/20200820130839_add_auto_close_incident_to_project_incident_management_settings.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class AddAutoCloseIncidentToProjectIncidentManagementSettings < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def up
- add_column :project_incident_management_settings, :auto_close_incident, :boolean, default: true, null: false
- end
-
- def down
- remove_column :project_incident_management_settings, :auto_close_incident
- end
-end