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/20200722202318_backfill_partitioned_audit_events.rb')
-rw-r--r--db/post_migrate/20200722202318_backfill_partitioned_audit_events.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/db/post_migrate/20200722202318_backfill_partitioned_audit_events.rb b/db/post_migrate/20200722202318_backfill_partitioned_audit_events.rb
deleted file mode 100644
index 538aa94e22b..00000000000
--- a/db/post_migrate/20200722202318_backfill_partitioned_audit_events.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-# frozen_string_literal: true
-
-class BackfillPartitionedAuditEvents < ActiveRecord::Migration[6.0]
- include Gitlab::Database::PartitioningMigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- return if ::Gitlab.com?
-
- enqueue_partitioning_data_migration :audit_events
- end
-
- def down
- return if ::Gitlab.com?
-
- cleanup_partitioning_data_migration :audit_events
- end
-end