diff --git a/content/250-postgres/900-troubleshooting.mdx b/content/250-postgres/900-troubleshooting.mdx index 525160e469..47d3dff24e 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 ``` + +## Workspace 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](/platform/about#workspace) project limit has been reached. + +### Solution + +To resolve this issue, consider the following options: + +- 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