Skip to content

Commit 5aac1d3

Browse files
committed
Add link to data guide article about migrations
1 parent 62262be commit 5aac1d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/200-concepts/050-overview/300-prisma-in-your-stack/03-is-prisma-an-orm.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ export class User {
8484
}
8585
```
8686

87-
### Migration workflows
87+
### Schema migration workflows
8888

89-
A central part of developing applications that make use of a database is changing the database schema to accommodate new features and to better fit the problem you're solving. In this section, we'll discuss what migrations are and how they affect the workflow.
89+
A central part of developing applications that make use of a database is changing the database schema to accommodate new features and to better fit the problem you're solving. In this section, we'll discuss what [schema migrations](https://www.prisma.io/dataguide/types/relational/what-are-database-migrations) are and how they affect the workflow.
9090

9191
Because the ORM sits between the developer and the database, most ORMs provide a **migration tool** to assist with the creation and modification of the database schema.
9292

0 commit comments

Comments
 (0)