Skip to content

Commit

Permalink
feat: add troubleshooting docs (#6652)
Browse files Browse the repository at this point in the history
* feat: add troubleshooting docs

* fix: url

* Apply suggestions from code review

* Update content/250-postgres/900-troubleshooting.mdx

---------

Co-authored-by: Nikolas <[email protected]>
  • Loading branch information
ankur-arch and nikolasburk authored Feb 6, 2025
1 parent ca3f8d0 commit cf515f5
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions content/250-postgres/900-troubleshooting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

0 comments on commit cf515f5

Please sign in to comment.