diff --git a/src/content/docs/migrations.mdx b/src/content/docs/migrations.mdx index e9bc516f..6ae484b0 100644 --- a/src/content/docs/migrations.mdx +++ b/src/content/docs/migrations.mdx @@ -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.