Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions content/200-orm/500-reference/400-system-requirements.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ This section lists the software that Prisma ORM requires and the supported opera

The latest version of Prisma ORM requires the following software:

| Tool | Minimum required version |
| :-------------------- | :----------------------- |
| Tool | Minimum required version |
| :-------------------- | :----------------------- |
| Node.js | ^20.19.0, ^22.12.0, or ^24.0.0 |
| TypeScript (optional) | 5.4+ |
| Yarn (optional) | 1.19.2 |
| TypeScript (optional) | 5.4+ |
| Yarn (optional) | 1.19.2 |

- Prisma ORM supports and tests all _Active LTS_ and _Maintenance LTS_ **Node.js** releases. [Releases that are not in these states like _Current_, and also odd-numbered versions](https://nodejs.org/en/about/releases/) probably also work, but are not recommended for production use.
- **TypeScript** is only required for TypeScript users.
Expand Down
4 changes: 2 additions & 2 deletions content/800-guides/010-data-migration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ When making changes to your database schema in production, it's crucial to ensur

Before starting this guide, make sure you have:

- Node.js installed (version 18 or higher)
- Node.js installed (version 20 or higher)
- A Prisma ORM project with an existing schema
- A supported database (PostgreSQL, MySQL, SQLite, SQL Server, etc.)
- Access to both development and production databases
Expand Down Expand Up @@ -289,4 +289,4 @@ Now that you've completed your first expand and contract migration, you can:

For more information:
- [Expand and Contract Pattern Documentation](https://www.prisma.io/dataguide/types/relational/expand-and-contract-pattern)
- [Prisma Migrate Workflows](/orm/prisma-migrate/workflows)
- [Prisma Migrate Workflows](/orm/prisma-migrate/workflows)
2 changes: 1 addition & 1 deletion content/800-guides/020-implementing-schema-changes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ When working in a team, managing database schema changes can be challenging. Thi

Before starting this guide, make sure you have:

- Node.js installed (version 18 or higher)
- Node.js installed (version 20 or higher)
- A Prisma project set up with migrations
- A relational database (PostgreSQL, MySQL, SQLite, SQL Server, etc.)
- Basic understanding of Git
Expand Down
4 changes: 2 additions & 2 deletions content/800-guides/040-migrate-from-sequelize.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This migration guide uses PostgreSQL as the example database, but it equally app
Before starting this guide, make sure you have:

- A Sequelize project you want to migrate
- Node.js installed (version 18 or higher)
- Node.js installed (version 20 or higher)
- PostgreSQL or another supported database
- Basic familiarity with Sequelize and Express.js

Expand Down Expand Up @@ -259,4 +259,4 @@ Now that you've migrated to Prisma ORM, you can:

For more information:
- [Prisma ORM documentation](/orm)
- [Prisma Client API reference](/orm/prisma-client)
- [Prisma Client API reference](/orm/prisma-client)
2 changes: 1 addition & 1 deletion content/800-guides/070-cloudflare-d1.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This guide shows you how to use Prisma ORM with Cloudflare D1, a serverless SQL
Before starting this guide, make sure you have:

- A Cloudflare account
- Node.js installed (version 18 or higher)
- Node.js installed (version 20 or higher)
- Wrangler CLI installed (version 3.39.0 or higher)
- Basic familiarity with Cloudflare Workers and D1

Expand Down
2 changes: 1 addition & 1 deletion content/800-guides/320-permit-io-access-control.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ You can find a complete example of this guide [here](https://www.permit.io/blog/

## Prerequisites

- [Node.js v16+](https://nodejs.org/)
- [Node.js v20+](https://nodejs.org/)
- [PostgreSQL](https://www.postgresql.org/) (local or hosted)
- [Prisma CLI](/orm/tools/prisma-cli) (`npx prisma`)
- [TypeScript](https://www.typescriptlang.org/)
Expand Down
Loading