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>2021-06-29 12:08:03 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-06-29 12:08:03 +0300
commitad2789aeba21edaadcbdc06523462e6fd87d4ba1 (patch)
tree319403c595130a4f78fae367c7cedc88466dd9db /doc/development/foreign_keys.md
parent2add640cfc67c927eb41cf542ef39ecda4c456c1 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/foreign_keys.md')
-rw-r--r--doc/development/foreign_keys.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/development/foreign_keys.md b/doc/development/foreign_keys.md
index abe191ace5e..0c68e8a5b34 100644
--- a/doc/development/foreign_keys.md
+++ b/doc/development/foreign_keys.md
@@ -28,7 +28,8 @@ Guide](migration_style_guide.md) for more information.
Keep in mind that you can only safely add foreign keys to existing tables after
you have removed any orphaned rows. The method `add_concurrent_foreign_key`
-does not take care of this so you'll need to do so manually.
+does not take care of this so you'll need to do so manually. See
+[adding foreign key constraint to an existing column](database/add_foreign_key_to_existing_column.md).
## Cascading Deletes