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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-03-30 03:08:32 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-03-30 03:08:32 +0300
commit70e8b38340b3d6857c709ea2158ef551633ad605 (patch)
treee672e215759faaed82f2f444facc037fd3e124b6 /lib/gitlab/database/migration_helpers
parent31664a1a5ac22e8c56a471d3afab26e661efcc0e (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/database/migration_helpers')
-rw-r--r--lib/gitlab/database/migration_helpers/loose_foreign_key_helpers.rb14
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/gitlab/database/migration_helpers/loose_foreign_key_helpers.rb b/lib/gitlab/database/migration_helpers/loose_foreign_key_helpers.rb
index 30601bffd7a..2221aea9f46 100644
--- a/lib/gitlab/database/migration_helpers/loose_foreign_key_helpers.rb
+++ b/lib/gitlab/database/migration_helpers/loose_foreign_key_helpers.rb
@@ -9,11 +9,11 @@ module Gitlab
DELETED_RECORDS_INSERT_FUNCTION_NAME = 'insert_into_loose_foreign_keys_deleted_records'
def track_record_deletions(table)
- execute(<<~SQL)
- CREATE TRIGGER #{record_deletion_trigger_name(table)}
- AFTER DELETE ON #{table} REFERENCING OLD TABLE AS old_table
- FOR EACH STATEMENT
- EXECUTE FUNCTION #{DELETED_RECORDS_INSERT_FUNCTION_NAME}();
+ execute(<<~SQL.squish)
+ CREATE TRIGGER #{record_deletion_trigger_name(table)}
+ AFTER DELETE ON #{table} REFERENCING OLD TABLE AS old_table
+ FOR EACH STATEMENT
+ EXECUTE FUNCTION #{DELETED_RECORDS_INSERT_FUNCTION_NAME}();
SQL
end
@@ -21,6 +21,10 @@ module Gitlab
drop_trigger(table, record_deletion_trigger_name(table))
end
+ def has_loose_foreign_key?(table)
+ trigger_exists?(table, record_deletion_trigger_name(table))
+ end
+
private
def record_deletion_trigger_name(table)