Overview

This page helps you make an informed decision on when and how to upgrade from Prisma 1 to Prisma ORM version 2.x and later.

Upgrade documentation

The upgrade documentation consists of several pages, here's an overview of how to use them:

  • How to upgrade (you are here): Starting point to learn about the upgrade process in general.
  • Schema incompatibilities: A reference page about the schema incompatibilities between Prisma 1 and Prisma ORM 2.x (and later versions). Reading this page is optional but it will give you a better understanding of certain steps in the upgrade process.

In addition to these two pages, there are various practical guides that walk you through an example scenario of the upgrade process:

  • Upgrading the Prisma layer: No matter what your Prisma 1 setup looks like, you should always start your upgrade process by following this guide.

Once you're done with that guide, you can choose one of the following four guides to upgrade your application layer:

  • Old to new Nexus: Choose this guide if you're currently running Prisma 1 with GraphQL Nexus.
  • prisma-binding to Nexus: Choose this guide if you're currently running Prisma 1 with prisma-binding and want to upgrade to .
  • prisma-binding to SDL-first: Choose this guide if you're currently running Prisma 1 with prisma-binding and want to upgrade to an GraphQL server.
  • REST API: Choose this guide if you're currently running Prisma 1 using Prisma Client 1 and are building a REST API.

Main differences between Prisma 1 and Prisma ORM version 2.x and later

On a high-level, the biggest differences between Prisma 1 and Prisma ORM versions 2.x and later are summarized below.

Prisma ORM 2.x and later versions:

  • don't require hosting a database proxy server (i.e., the ).
  • make the features of Prisma 1 more modular and splits them into dedicated tools:
    • Prisma Client: An improved version of Prisma Client 1.0
    • Prisma Migrate: Data modeling and migrations (formerly prisma deploy).
  • use the Prisma schema, a merge of Prisma 1 datamodel and prisma.yml.
  • use its own instead of being based on GraphQL SDL.
  • don't expose anymore, but only allows for programmatic access via the Prisma Client API.
    • don't support Prisma ORM binding any more.
  • allows connecting Prisma ORM 2.x and later version to any existing database, via more powerful introspection

Feature parity

Prisma ORM 2.x and later versions do not yet have full feature parity with Prisma 1. The biggest feature that is still missing from Prisma ORM versions 2.x and later is real-time subscriptions.

  • Real-time API (Subscriptions): Prisma ORM version 2.x and later currently and get notified in real time. It is currently unclear if, when, and in what form a real-time API will be added to Prisma ORM versions 2.x and later. For the time being, you can implement real-time functionality using native database triggers, or if you're using GraphQL subscriptions you can consider triggering subscriptions manually inside your mutation resolvers.

Schema incompatibilities

The database schema that is created when running prisma deploy in Prisma 1 is only partially compatible with the one that Prisma ORM versions 2.x and later creates. This section gives a quick overview of the general incompatibilities and the potential workarounds. -

Note: For a detailed explanation of the problems and respective workarounds, please refer to the Schema incompatibilities page.

Here's an overview of the different columns:

  • Problem: A short description of the problem when upgrading from Prisma 1 to Prisma ORM versions 2.x and later
  • SQL: Can this be solved by making a non-breaking change to the SQL schema?
  • Prisma schema: Can this be solved by making a non-breaking change to the schema in Prisma ORM versions 2.x and later?
  • Breaking Prisma 1: Do the SQL statements break the Prisma 1 setup? This is only relevant when you're choosing the gradual side-by-side upgrade strategy.
ProblemSQLPrisma schemaBreaking Prisma 1
Default values aren't represented in databaseYesYesNo
Generated CUIDs as ID values aren't represented in databaseNoYesNo
@createdAt isn't represented in databaseYesYesNo
@updatedAt isn't represented in databaseNoYesNo
Inline 1-1 relations are recognized as 1-n (missing UNIQUE constraint)YesNoNo
All non-inline relations are recognized as m-nYesNoYes
Json type is represented as TEXT in databaseYesNoNo (MySQL)
Yes (PostgreSQL)
Enums are represented as TEXT in databaseYesNoNo (MySQL)
Yes (PostgreSQL)
Required 1-1 relations are not represented in databaseNoYesNo
@db attributes from Prisma 1 are not transferred to the Prisma schemaNoYesNo
Mismatching CUID lengthYesNoNo
Scalar lists (arrays) are maintained with extra tableDependsNoDepends

Note: A general drawback with the workarounds in the Prisma schema is that and need to be re-added manually after each introspection run.

Prisma 1 Upgrade CLI

The helps you apply the workarounds that are explained on the Schema incompatibilities page. It generates the SQL statements to fix the database schema and make it compatible with Prisma ORM versions 2.x and later. Note that you are in full control over the operations that are executed against your database, the Upgrade CLI only generates and prints the statements for you. The Upgrade CLI also takes care of the workarounds in the Prisma schema.

On a high-level, the upgrade workflow using the Upgrade CLI looks as follows.

For the initial setup:

  1. You set up Prisma ORM by installing the Prisma ORM versions 2.x and later CLI and running npx prisma init.
  2. You connect to your database and introspect it with npx prisma db pull.

Prisma CLI introspection flow

For fixing the schema incompatibilities:

  1. You invoke the Upgrade CLI with npx prisma-upgrade.
  2. The Upgrade CLI generates SQL commands for you to run on your database.
  3. You run the SQL commands against your database.
  4. You run the prisma db pull command again.
  5. You run the npx prisma-upgrade command again.
  6. The Upgrade CLI adjusts the Prisma schema (version 2.x and later) by adding missing attributes.

Fixing the schema incompatibilities

Note that the Upgrade CLI is designed in a way that you can stop and re-start the process at any time. Once you ran a SQL command that was generated by the Upgrade CLI against your database, the SQL command will not show up the next time you invoke the Upgrade CLI. That way, you can gradually resolve all schema incompatibilities when it's convenient for you.

Upgrade strategies

There are two main upgrade strategies:

  • Upgrade all at once: Entirely remove Prisma 1 from your project and move everything over to Prisma ORM version 2.x or later at once.
  • Gradual upgrade side-by-side: Add Prisma ORM version 2.x and later to the existing Prisma 1 project and gradually replace existing Prisma 1 features with the newer Prisma features while running them side-by-side.

Note that if you are planning to run Prisma 1 and Prisma ORM 2.x or later version side-by-side, you must not yet resolve the schema compatibilities that are breaking the Prisma 1 setup.

When to choose which strategy

If your project is not yet running in production or has little traffic and user data, the all at once strategy is recommended.

In case your project already sees a lot of traffic and has a lot of user data stored in the database, you might want to consider the gradual upgrade strategy where you're running Prisma 1 and Prisma ORM 2 or later side-by-side for a certain amount of time until you've replace all former Prisma 1 functionality with Prisma ORM 2 or later version.

Note that you won't be able to fix the schema incompatibilities that require a "Breaking Prisma 1" change if you choose the gradual upgrade strategy and intend to run Prisma 1 and Prisma ORM version 2.x or later side-by-side. That's because these data migrations are breaking the schema that Prisma 1 expects. This means that your Prisma Client API might not feel as idiomatic as it could, but you still get the full feature set of Prisma Client.

Upgrade path

No matter which of the strategies you choose, on a high-level the envisioned upgrade path looks as follows:

  1. Install the new Prisma ORM version 2.x or later CLI as a development dependency
  2. Create your Prisma schema and configure the database connection URL
  3. Use the Prisma ORM version 2.x or later CLI to introspect your Prisma 1 database and generate your Prisma schema
  4. Run the to "fix" the Prisma schema
  5. Install and generate Prisma Client version 2.x or later
  6. Adjust your application code, specifically replace the API calls from the Prisma Client 1.0 with those of Prisma Client version 2.x or later

Next steps

Once you've made the decision to upgrade, continue with the Upgrading the Prisma ORM layer guide.