From e1b5ce6eda85215d7447d239ab32d62720496169 Mon Sep 17 00:00:00 2001 From: Cong Tuan Le <70543626+ctuanle@users.noreply.github.com> Date: Wed, 8 Feb 2023 00:50:28 +0100 Subject: [PATCH] fix: reference to postgresql docs of 'create role' I think the reference is supposed to be this [Create role](https://www.postgresql.org/docs/12/sql-createrole.html) --- .../100-components/03-prisma-migrate/200-shadow-database.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/200-concepts/100-components/03-prisma-migrate/200-shadow-database.mdx b/content/200-concepts/100-components/03-prisma-migrate/200-shadow-database.mdx index 75e4f600d8..06d8169b0b 100644 --- a/content/200-concepts/100-components/03-prisma-migrate/200-shadow-database.mdx +++ b/content/200-concepts/100-components/03-prisma-migrate/200-shadow-database.mdx @@ -108,7 +108,7 @@ In order to create and delete the shadow database when using development command | -------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | SQLite | No special requirements. | | MySQL | Database user must have `CREATE, ALTER, DROP, REFERENCES ON *.*` privileges | -| PostgreSQL | The user must be a super user or have `CREATEDB` privilege. See `CREATE ROLE` ([PostgreSQL official documentation](https://www.postgresql.org/docs/12/sql-createdatabase.html)) | +| PostgreSQL | The user must be a super user or have `CREATEDB` privilege. See `CREATE ROLE` ([PostgreSQL official documentation](https://www.postgresql.org/docs/12/sql-createrole.html)) | | Microsoft SQL Server | The user must be a site admin or have the `SERVER` securable. See the [official documentation](https://docs.microsoft.com/en-us/sql/relational-databases/security/permissions-database-engine?view=sql-server-ver15). | > If you use a cloud-hosted database for development and can not use these permissions, see: [Cloud-hosted shadow databases](#cloud-hosted-shadow-databases-must-be-created-manually)