From 3ed8401d6b8e22525aea598eb5b9d133ae5800f0 Mon Sep 17 00:00:00 2001 From: Ankur Datta <64993082+ankur-arch@users.noreply.github.com> Date: Thu, 6 Feb 2025 17:27:55 +0600 Subject: [PATCH 1/4] feat: add troubleshooting docs --- content/250-postgres/900-troubleshooting.mdx | 31 ++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/content/250-postgres/900-troubleshooting.mdx b/content/250-postgres/900-troubleshooting.mdx index 525160e469..4e1af7c87c 100644 --- a/content/250-postgres/900-troubleshooting.mdx +++ b/content/250-postgres/900-troubleshooting.mdx @@ -53,3 +53,34 @@ To remove this warning and generate Prisam Client without the query engine, you ``` npx prisma generate --no-engine ``` + +## Plan limit reached when running `prisma init --db` + +### Problem + +When running the command: + +```terminal +npx prisma@latest init --db +``` + +You may encounter the following error message in your logs: + +``` +Workspace plan limit reached for feature "Project". +``` + +### Cause + +Your default [workspace](https://www.prisma.io/docs/platform/about#workspace) project limit has been reached. + +### Solution + +To resolve this issue, consider the following options: + +1. Configure a different Workspace as your default—one that has available capacity for additional projects. +1. Delete unused projects or databases from your current default Workspace to free up space. +1. Ensure that you are logged into the correct account in the Prisma CLI. For more details on authentication and account management, please refer to the [Prisma CLI documentation](/platform/platform-cli/commands#authentication). +1. [Upgrade to a plan](/platform/about#billing) that supports more projects in your default Workspace. + +Implementing one or more of these solutions should help you overcome the plan limit issue. \ No newline at end of file From 99f2464fb3188123614513e76f6793c87ee4c16c Mon Sep 17 00:00:00 2001 From: Ankur Datta <64993082+ankur-arch@users.noreply.github.com> Date: Thu, 6 Feb 2025 17:30:17 +0600 Subject: [PATCH 2/4] fix: url --- content/250-postgres/900-troubleshooting.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/250-postgres/900-troubleshooting.mdx b/content/250-postgres/900-troubleshooting.mdx index 4e1af7c87c..01301eb527 100644 --- a/content/250-postgres/900-troubleshooting.mdx +++ b/content/250-postgres/900-troubleshooting.mdx @@ -72,7 +72,7 @@ Workspace plan limit reached for feature "Project". ### Cause -Your default [workspace](https://www.prisma.io/docs/platform/about#workspace) project limit has been reached. +Your default [workspace](/platform/about#workspace) project limit has been reached. ### Solution From 80257b059c52dc103e8251c06a835c3cc224caad Mon Sep 17 00:00:00 2001 From: Ankur Datta <64993082+ankur-arch@users.noreply.github.com> Date: Thu, 6 Feb 2025 17:56:59 +0600 Subject: [PATCH 3/4] Apply suggestions from code review --- content/250-postgres/900-troubleshooting.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/250-postgres/900-troubleshooting.mdx b/content/250-postgres/900-troubleshooting.mdx index 01301eb527..9dabc03c86 100644 --- a/content/250-postgres/900-troubleshooting.mdx +++ b/content/250-postgres/900-troubleshooting.mdx @@ -78,9 +78,9 @@ Your default [workspace](/platform/about#workspace) project limit has been reach To resolve this issue, consider the following options: -1. Configure a different Workspace as your default—one that has available capacity for additional projects. -1. Delete unused projects or databases from your current default Workspace to free up space. -1. Ensure that you are logged into the correct account in the Prisma CLI. For more details on authentication and account management, please refer to the [Prisma CLI documentation](/platform/platform-cli/commands#authentication). -1. [Upgrade to a plan](/platform/about#billing) that supports more projects in your default Workspace. +- Configure a different Workspace as your default—one that has available capacity for additional projects. +- Delete unused projects or databases from your current default Workspace to free up space. +- Ensure that you are logged into the correct account in the Prisma CLI. For more details on authentication and account management, please refer to the [Prisma CLI documentation](/platform/platform-cli/commands#authentication). +- [Upgrade to a plan](/platform/about#billing) that supports more projects in your default Workspace. Implementing one or more of these solutions should help you overcome the plan limit issue. \ No newline at end of file From fc8480a590b5e54658ad85c1ce9285337e9586d1 Mon Sep 17 00:00:00 2001 From: Nikolas Date: Thu, 6 Feb 2025 13:22:55 +0100 Subject: [PATCH 4/4] Update content/250-postgres/900-troubleshooting.mdx --- content/250-postgres/900-troubleshooting.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/250-postgres/900-troubleshooting.mdx b/content/250-postgres/900-troubleshooting.mdx index 9dabc03c86..47d3dff24e 100644 --- a/content/250-postgres/900-troubleshooting.mdx +++ b/content/250-postgres/900-troubleshooting.mdx @@ -54,7 +54,7 @@ To remove this warning and generate Prisam Client without the query engine, you npx prisma generate --no-engine ``` -## Plan limit reached when running `prisma init --db` +## Workspace plan limit reached when running `prisma init --db` ### Problem