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-01-03 18:10:11 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-03 18:10:11 +0300
commit4eef6c2c97b50f2305c561f0e1c6f0e14e661642 (patch)
tree03901d23471c6ad7984f8164297b13725adcd8fb /scripts/decomposition
parentb9ae930d02bebaadcd6f019b59240f1304822ef8 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'scripts/decomposition')
-rwxr-xr-xscripts/decomposition/generate-loose-foreign-key2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/decomposition/generate-loose-foreign-key b/scripts/decomposition/generate-loose-foreign-key
index 3f4c510020a..2e91aa662de 100755
--- a/scripts/decomposition/generate-loose-foreign-key
+++ b/scripts/decomposition/generate-loose-foreign-key
@@ -253,7 +253,7 @@ end
# Show only cross-schema foreign keys
if $options[:cross_schema]
all_foreign_keys.select! do |definition|
- Gitlab::Database::GitlabSchema.table_schema(definition.from_table) != Gitlab::Database::GitlabSchema.table_schema(definition.to_table)
+ Gitlab::Database::GitlabSchema.table_schema!(definition.from_table) != Gitlab::Database::GitlabSchema.table_schema!(definition.to_table)
end
end