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-23 09:16:39 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-03-23 09:16:39 +0300
commit669a1c319d27a21b1852512272ed93b9283a6121 (patch)
treeed9352de2325bba5e051aef6c38cee067abf21be /doc/development/database/ci_mirrored_tables.md
parentad4ef35766b19c084f7762b528981fa95afb0c61 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/database/ci_mirrored_tables.md')
-rw-r--r--doc/development/database/ci_mirrored_tables.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/development/database/ci_mirrored_tables.md b/doc/development/database/ci_mirrored_tables.md
index bf3a744b936..1e37739bdc4 100644
--- a/doc/development/database/ci_mirrored_tables.md
+++ b/doc/development/database/ci_mirrored_tables.md
@@ -76,9 +76,8 @@ the source and the target tables in sync:
1. Deleting namespaces/projects.
```mermaid
-graph TD
-
- subgraph "CI database (tables)"
+graph LR
+ subgraph CI["CI Tables"]
E[other CI tables]
F{queries with joins allowed}
G[ci_project_mirrors]
@@ -89,17 +88,18 @@ graph TD
F---H
end
- A---B
- B---C
- B---D
+ Main["Main Tables"]---L["⛔ ← Joins are not allowed → ⛔"]
+ L---CI
-L["⛔ ← Joins are not allowed → ⛔"]
-
- subgraph "Main database (tables)"
+ subgraph Main["Main Tables"]
A[other main tables]
B{queries with joins allowed}
C[projects]
D[namespaces]
+
+ A---B
+ B---C
+ B---D
end
```