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/20201203123201_remove_orphan_service_hooks.rb')
-rw-r--r--db/post_migrate/20201203123201_remove_orphan_service_hooks.rb31
1 files changed, 0 insertions, 31 deletions
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