apps/docs/content/docs.v6/orm/prisma-migrate/understanding-prisma-migrate/legacy-migrate.mdx
Important! This page documents legacy Prisma Migrate (Experimental) available in version 2.12.0 and earlier. Prisma Migrate is available in version 2.13.0 and Generally Available in 2.19.0.
Legacy Prisma Migrate is a tool that lets you change your database schema, e.g. by creating new tables or adding columns to existing tables. These changes are called schema migrations. legacy Prisma Migrate is available as part of the Prisma CLI via the legacy Prisma Migrate command.
db push commandIf you want to prototype or iterate on a schema design in a development environment, consider the db push command.
Legacy Prisma Migrate is a declarative migration system, as opposed to SQL which can be considered imperative:
Here's a quick comparison. Assume you have the following scenario:
User table to store user information (name, email, ...)Post and Profile with foreign keys to UserPost tableIn SQL, you'd have to send three subsequent SQL statements to account for this scenario:
User table to store user information (name, email, ...)CREATE TABLE "User" (
id SERIAL PRIMARY KEY,
name VARCHAR(255),
email VARCHAR(255) NOT NULL
);
Post and Profile with foreign keys to UserCREATE TABLE "Profile" (
id SERIAL PRIMARY KEY,
bio TEXT NOT NULL,
"user" integer NOT NULL UNIQUE,
FOREIGN KEY ("user") REFERENCES "User"(id)
);
CREATE TABLE "Post" (
id SERIAL PRIMARY KEY,
title VARCHAR(255) NOT NULL,
author integer NOT NULL,
FOREIGN KEY (author) REFERENCES "User"(id)
);
Post tableALTER TABLE "Post"
ADD COLUMN published BOOLEAN DEFAULT false;
With legacy Prisma Migrate, you write the desired database schema in the form of a Prisma schema data model inside your Prisma schema file. To map the data model to your database schema, you then have to run these two commands:
prisma migrate save --experimental
prisma migrate up --experimental
The first command saves a new migration to the prisma/migrations directory in the file system of your project and updates the _Migration table in your database. Each time you run this command to save a new migration, it creates a dedicated directory inside of prisma/migrations for that specific migration, which will have its own README.md file containing detailed information about the migration (e.g. the generated SQL statements which will be executed when you run legacy Prisma Migrate up).
The second command executes the migration against your database.
User table to store user information (name, email, ...)Add the model to your Prisma schema:
model User {
id Int @id @default(autoincrement())
name String?
email String @unique
}
Now run the two commands mentioned above:
prisma migrate save --experimental
prisma migrate up --experimental
Post and Profile with foreign keys to UserAdd two models with relation fields to your Prisma schema:
model User {
id Int @id @default(autoincrement())
name String?
email String @unique
posts Post[]
profile Profile?
}
model Profile {
id Int @id @default(autoincrement())
bio String
user User @relation(fields: [userId], references: [id])
userId Int
}
model Post {
id Int @id @default(autoincrement())
title String
author User @relation(fields: [authorId], references: [id])
authorId Int
}
Notice that in addition to the annotated relation fields and its relation scalar field (which represent the foreign keys), you must also specify the Prisma-level relation fields on the other side of the relation.
Now run the two commands mentioned above:
prisma migrate save --experimental
prisma migrate up --experimental
Post tableAdd a field to the Post model:
model User {
id Int @id @default(autoincrement())
name String?
email String @unique
posts Post[]
profile Profile?
}
model Profile {
id Int @id @default(autoincrement())
bio String
user User @relation(fields: [userId], references: [id])
userId Int
}
model Post {
id Int @id @default(autoincrement())
title String
published Boolean @default(false)
authorId Int
author User @relation(fields: [authorId], references: [id])
}
Now run the two commands mentioned above:
prisma migrate save --experimental
prisma migrate up --experimental
The following table shows which SQL operations are currently supported by legacy Prisma Migrate.
| Operation | SQL | Supported |
|---|---|---|
| Create a new table | CREATE TABLE | ✔️ |
| Rename an existing table | ALTER TABLE + RENAME | No |
| Delete an existing table | DROP TABLE | ✔️ |
| Add a column to an existing table | ALTER TABLE + ADD COLUMN | ✔️ |
| Rename an existing column | ALTER TABLE + RENAME COLUMN | No |
| Delete an existing column | ALTER TABLE + DROP COLUMN | ✔️ |
| Set primary keys (IDs) | PRIMARY KEY | ✔️ |
| Define relations (foreign keys) | FOREIGN KEY + REFERENCES | ✔️ |
| Make columns optional/required | NOT NULL | ✔️ |
| Set unique constraints | UNIQUE | ✔️ |
| Set default values | DEFAULT | ✔️ |
| Define enums | ENUM | ✔️ |
| Create indexes | CREATE INDEX | ✔️ |
| Cascading deletes | ON DELETE | No (workaround: manually add in SQL and introspect) |
| Cascading updates | ON UPDATE | No |
| Data validation | CHECK | No (workaround) |
Note that this table assumes that the operation is also supported by the underlying database. For example, ENUM is not supported in SQLite. This means that you also can't use enum when using legacy Prisma Migrate.
legacy Prisma Migrate stores the migration history of your project in two places:
migrations on your file system_Migration in your databasemigrations directoryThe migrations directory stores information about the migrations that have been or will be executed against your database. You should never make any manual changes to the files in migrations. The only way to change the content of this directory should be using the legacy Prisma Migrate save command.
The migrations directory should be checked into version control (e.g. Git).
_Migration tableThe _Migration table additionally stores information about each migration that was ever executed against the database by legacy Prisma Migrate.
With legacy Prisma Migrate, the workflow looks slightly different:
legacy Prisma Migrate CLI commandsSince legacy Prisma Migrate is currently Experimental, you might end up in a state where the migrations directory and/or the _Migrations table are out of sync with the actual state of the database. In these cases, it often helps to "reset" legacy Prisma Migrate by deleting the migrations folder and deleting all entries from the _Migration table.
migrations directoryrm -rf migrations
_Migration tableTRUNCATE _Migration;
Warning: The
migratecommand is still considered Experimental. As such, there are no guarantees about API stability or production-readiness. Access to this command is provided for evaluation and experimentation. To access Experimental commands, you must add the--experimentalflag.
The migrate command creates and manages database migrations. It can be used to create, apply, and rollback database schema updates in a controlled manner.
The migrate command includes a number of subcommands to specify the desired action.
migrate saveSaves a migration that defines the steps necessary to update your current schema.
Before using the migrate save command, you must define a valid datasource within your schema.prisma file.
For example, the following datasource defines a SQLite database file within the current directory:
datasource db {
provider = "sqlite"
url = "file:my-database.db"
}
The migrate save command recognizes the following options to modify its behavior:
| Option | Required | Description | Default |
|---|---|---|---|
--experimental | Yes | Enables use of Experimental commands. | |
-n, --name | No | The name of the migration. If not provided, migrate save will prompt you for a name. | Timestamp 20200618145356 |
-c, --create-db | No | Create the database if it does not exist. | |
-p, --preview | No | Preview the migration that would be created without writing any changes to the filesystem. | |
--schema | No | Specifies the path to the desired schema.prisma file to be processed instead of the default path. Both absolute and relative paths are supported. | ./schema.prisma, ./prisma/schema.prisma |
The migrate save command generates the following directories and files as necessary:
migrations: A directory within the current project to store migrations. This directory will be created if it does not exist.migrations/migrate.lock: A lock file created specifying the current migration applied to the database. This file will be created if it does not exist.migrations/<migration>: A directory for a specific migration. The migration name is derived from the timestamp when it was created followed by a hyphen and the migration name provided by the user.migrations/<migration>/README.md: A human-readable description of the migration including metadata like when the migration was created and by who, a list of the actual migration changes and a diff of the changes that are made to the schema.prisma file.migrations/<migration>/schema.prisma: The schema that will be created if the migration is applied to the project.migrations/<migration>/steps.json: An alternative representation of the migration steps that will be applied.prisma migrate save --experimental
The command will prompt you for a name for the migration since one was not provided on the command line. After creating the migration, the contents of the generated schema.prisma file are displayed.
prisma migrate save --name "First migration" --experimental
prisma migrate save --create-db --experimental
migrate save commandprisma migrate save --preview --experimental
migrate upMigrate the database up to a specific state.
Before using the migrate up command, you must define a valid datasource within your schema.prisma file.
For example, the following datasource defines a SQLite database file within the current directory:
datasource db {
provider = "sqlite"
url = "file:my-database.db"
}
The point to migrate the database up to can be defined in any of the following three ways:
| Argument | Required | Description | Default |
|---|---|---|---|
| increment | No | Specifies the number of forward migrations to apply. | latest |
| name | No | Specifies where to migrate to using the name of the final migration to apply. | latest |
| timestamp | No | Specifies where to migrate to using the timestamp of the final migration to apply. | latest |
Additionally, the following options modify the behavior of the migrate up command:
| Option | Required | Description | Default |
|---|---|---|---|
--experimental | Yes | Enables use of Experimental commands | |
-c, --create-db | No | Create the database if it does not exist. | |
-p, --preview | No | Preview the migration that would be created without writing any changes to the filesystem. | |
--schema | No | Specifies the path to the desired schema.prisma file to be processed instead of the default path. Both absolute and relative paths are supported. | ./schema.prisma, ./prisma/schema.prisma |
--auto-approve | No | Skip interactive approval before migrating. |
prisma migrate up --experimental
prisma migrate up 2 --experimental
prisma migrate up "First migration" --experimental
prisma migrate up 20200223181448 --experimental
prisma migrate up --create-db --experimental
migrate up commandprisma migrate up --preview --experimental
migrate downMigrate the database down to a specific state.
Before using the migrate down command, you must define a valid datasource within your schema.prisma file.
For example, the following datasource defines a SQLite database file within the current directory:
datasource db {
provider = "sqlite"
url = "file:my-database.db"
}
The point to migrate back to can be defined in any of the following three ways:
| Argument | Required | Description | Default |
|---|---|---|---|
| decrement | No | Specifies the number of backwards migrations to apply. | 1 |
| name | No | Specifies where to migrate back to using the name of the final migration to apply. | |
| timestamp | No | Specifies where to migrate back to using the timestamp of the final migration to apply. |
Additionally, the following options modify the behavior of the migrate down command:
| Option | Required | Description | Default |
|---|---|---|---|
--experimental | Yes | Enables use of Experimental commands | |
-p, --preview | No | Preview the migration that would be created without writing any changes to the filesystem. | |
--schema | No | Specifies the path to the desired schema.prisma file to be processed instead of the default path. Both absolute and relative paths are supported. | ./schema.prisma, ./prisma/schema.prisma |
prisma migrate down --experimental
prisma migrate down 2 --experimental
prisma migrate down "First migration" --experimental
prisma migrate down 20200223181448 --experimental
migrate down commandprisma migrate down --preview --experimental