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/20210126030249_add_security_dashboard_access_level_into_project_features.rb')
-rw-r--r--db/migrate/20210126030249_add_security_dashboard_access_level_into_project_features.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/db/migrate/20210126030249_add_security_dashboard_access_level_into_project_features.rb b/db/migrate/20210126030249_add_security_dashboard_access_level_into_project_features.rb
deleted file mode 100644
index cd325747282..00000000000
--- a/db/migrate/20210126030249_add_security_dashboard_access_level_into_project_features.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-# frozen_string_literal: true
-
-class AddSecurityDashboardAccessLevelIntoProjectFeatures < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
- PRIVATE_ACCESS_LEVEL = 10
-
- def up
- with_lock_retries do
- add_column :project_features, :security_and_compliance_access_level, :integer, default: PRIVATE_ACCESS_LEVEL, null: false
- end
- end
-
- def down
- with_lock_retries do
- remove_column :project_features, :security_and_compliance_access_level
- end
- end
-end