summaryrefslogtreecommitdiff
path: root/db/migrate/20201021155606_add_analytics_access_level_to_project_features.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20201021155606_add_analytics_access_level_to_project_features.rb')
-rw-r--r--db/migrate/20201021155606_add_analytics_access_level_to_project_features.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/db/migrate/20201021155606_add_analytics_access_level_to_project_features.rb b/db/migrate/20201021155606_add_analytics_access_level_to_project_features.rb
deleted file mode 100644
index faedbced06b..00000000000
--- a/db/migrate/20201021155606_add_analytics_access_level_to_project_features.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-# frozen_string_literal: true
-
-# See https://docs.gitlab.com/ee/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class AddAnalyticsAccessLevelToProjectFeatures < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- # Set this constant to true if this migration requires downtime.
- DOWNTIME = false
-
- def up
- with_lock_retries do
- add_column :project_features, :analytics_access_level, :integer, default: 20, null: false
- end
- end
-
- def down
- with_lock_retries do
- remove_column :project_features, :analytics_access_level, :integer
- end
- end
-end