From 311b0269b4eb9839fa63f80c8d7a58f32b8138a0 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 18 Nov 2021 13:16:36 +0000 Subject: Add latest changes from gitlab-org/gitlab@14-5-stable-ee --- .../20201203123201_remove_orphan_service_hooks.rb | 31 ---------------------- 1 file changed, 31 deletions(-) delete mode 100644 db/post_migrate/20201203123201_remove_orphan_service_hooks.rb (limited to 'db/post_migrate/20201203123201_remove_orphan_service_hooks.rb') diff --git a/db/post_migrate/20201203123201_remove_orphan_service_hooks.rb b/db/post_migrate/20201203123201_remove_orphan_service_hooks.rb deleted file mode 100644 index c430e2205c2..00000000000 --- a/db/post_migrate/20201203123201_remove_orphan_service_hooks.rb +++ /dev/null @@ -1,31 +0,0 @@ -# frozen_string_literal: true - -class RemoveOrphanServiceHooks < ActiveRecord::Migration[6.0] - include Gitlab::Database::MigrationHelpers - - DOWNTIME = false - - class WebHook < ActiveRecord::Base - include EachBatch - - self.table_name = 'web_hooks' - - def self.service_hooks - where(type: 'ServiceHook') - end - end - - class Service < ActiveRecord::Base - self.table_name = 'services' - end - - def up - WebHook.service_hooks.where.not(service_id: Service.select(:id)).where.not(service_id: nil).each_batch do |relation| - relation.delete_all - end - end - - def down - # no-op - end -end -- cgit v1.2.3