Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/content/docs/migrations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ SQL databases require you to specify a **strict schema** of entities you're goin
and if (when) you need to change the shape of those entities - you will need to do it via **schema migrations**.

There're multiple production grade ways of managing database migrations.
Drizzle is designed to perfectly suits all of them, regardless of you going **database first** or **codebase first**.
Drizzle is designed to perfectly suit all of them, regardless of you going **database first** or **codebase first**.

**Database first** is when your database schema is a source of truth. You manage your database schema either directly on the database or
via database migration tools and then you pull your database schema to your codebase application level entities.
Expand Down