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/post_migrate/20180809195358_migrate_null_wiki_access_levels.rb')
-rw-r--r--db/post_migrate/20180809195358_migrate_null_wiki_access_levels.rb32
1 files changed, 0 insertions, 32 deletions
diff --git a/db/post_migrate/20180809195358_migrate_null_wiki_access_levels.rb b/db/post_migrate/20180809195358_migrate_null_wiki_access_levels.rb
deleted file mode 100644
index b272bad7f92..00000000000
--- a/db/post_migrate/20180809195358_migrate_null_wiki_access_levels.rb
+++ /dev/null
@@ -1,32 +0,0 @@
-# frozen_string_literal: true
-
-class MigrateNullWikiAccessLevels < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- class ProjectFeature < ActiveRecord::Base
- include EachBatch
-
- self.table_name = 'project_features'
- end
-
- def up
- ProjectFeature.where(wiki_access_level: nil).each_batch do |relation|
- relation.update_all(wiki_access_level: 20)
- end
-
- # We need to re-count wikis as previous attempt was not considering the NULLs.
- transaction do
- execute('SET LOCAL statement_timeout TO 0') # see https://gitlab.com/gitlab-org/gitlab-foss/issues/48967
-
- execute("UPDATE site_statistics SET wikis_count = (SELECT COUNT(*) FROM project_features WHERE wiki_access_level != 0)")
- end
- end
-
- def down
- # there is no way to rollback this change, there are no downsides in keeping migrated data.
- end
-end