From a98418c6d887a0175639596e7535482c85b11330 Mon Sep 17 00:00:00 2001 From: TomLarson20 <85533752+TomLarson20@users.noreply.github.com> Date: Tue, 27 Jan 2026 06:16:03 -0600 Subject: [PATCH] docs: add example output after creating postgres role (#17451) Added example output showing what the roles table should look like after creating the postgres role Co-authored-by: Tom Larson --- .../developers/contribute/capabilities/local-setup.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/twenty-docs/developers/contribute/capabilities/local-setup.mdx b/packages/twenty-docs/developers/contribute/capabilities/local-setup.mdx index 3ca4c3fe4b..50ec3467a2 100644 --- a/packages/twenty-docs/developers/contribute/capabilities/local-setup.mdx +++ b/packages/twenty-docs/developers/contribute/capabilities/local-setup.mdx @@ -159,6 +159,12 @@ You should run all commands in the following steps from the root of the project. CREATE ROLE postgres WITH SUPERUSER LOGIN; ``` This creates a superuser role named `postgres` with login access. + ```bash + Role name | Attributes | Member of + -----------+-------------+----------- + postgres | Superuser | {} + john | Superuser | {} + ``` **Option 2:** If you have docker installed: ```bash