From fe2aaa60dc249a1ee43783fee645fe1ef3d242fc Mon Sep 17 00:00:00 2001 From: Olaoluwa Oluro Date: Mon, 1 Sep 2025 10:34:14 +0100 Subject: [PATCH] Fix schema doc for gpg_key_subkeys `gpg_key_subkeys` was incorrectly assigned `gitlab_main_user` schema but it didn't meet the last "Tables on this schema must strictly belong to a user." criteria. This commit fixes it by assigning it correctly to `gitlab_main_org` --- db/docs/gpg_key_subkeys.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/docs/gpg_key_subkeys.yml b/db/docs/gpg_key_subkeys.yml index ca6b25ddb6397a..aa0d5c904c1e97 100644 --- a/db/docs/gpg_key_subkeys.yml +++ b/db/docs/gpg_key_subkeys.yml @@ -7,7 +7,7 @@ feature_categories: description: Stores GPG subkeys introduced_by_url: https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/14517 milestone: '10.1' -gitlab_schema: gitlab_main_user +gitlab_schema: gitlab_main_org desired_sharding_key: user_id: references: users -- GitLab