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/20220607140222_remove_invalid_integrations.rb')
-rw-r--r--db/post_migrate/20220607140222_remove_invalid_integrations.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/db/post_migrate/20220607140222_remove_invalid_integrations.rb b/db/post_migrate/20220607140222_remove_invalid_integrations.rb
new file mode 100644
index 00000000000..49834d7b120
--- /dev/null
+++ b/db/post_migrate/20220607140222_remove_invalid_integrations.rb
@@ -0,0 +1,22 @@
+# frozen_string_literal: true
+
+class RemoveInvalidIntegrations < Gitlab::Database::Migration[2.0]
+ disable_ddl_transaction!
+ restrict_gitlab_migration gitlab_schema: :gitlab_main
+
+ BATCH_SIZE = 100
+
+ def up
+ loop do
+ deleted = Integration.where(type_new: nil).limit(BATCH_SIZE).delete_all
+
+ break if deleted < BATCH_SIZE
+ end
+ end
+
+ # Isolated version of the Integration model
+ class Integration < MigrationRecord
+ self.table_name = 'integrations'
+ self.inheritance_column = :_type_disabled
+ end
+end