Skip to content

Add details on project_namespace_id

Manoj M J requested to merge manojmj-master-patch-27480 into master

What does this MR do and why?

To create query plans that involve project memberships, we now require the project_namespace_id of projects, because these queries are now of the form:

SELECT "members".*
      FROM "members"
      WHERE "members"."type" = 'ProjectMember'
        AND "members"."member_namespace_id" = ?
        AND "members"."requested_at" IS NULL
      )

We are missing this data in the docs now. This MR adds that information, so that it is easier for devs to find this information without having to ask another engineer.

Screenshots or screen recordings

Screenshots are required for UI changes, and strongly recommended for all other merge requests.

Before After

How to set up and validate locally

Numbered steps to set up and validate the change are strongly suggested.

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Merge request reports