Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typo "suites" to "suits" #494

Merged
merged 1 commit into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
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/kit-overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import Prerequisites from "@mdx/Prerequisites.astro"
drizzle-kit
</Npm>
<Callout type="warning">
Make sure to first go through Drizzle [get started](/docs/get-started) and [migration foundamentals](/docs/migrations) and pick SQL migration flow that suites your business needs best.
Make sure to first go through Drizzle [get started](/docs/get-started) and [migration foundamentals](/docs/migrations) and pick SQL migration flow that suits your business needs best.
</Callout>

Based on your schema, Drizzle Kit let's you generate and run SQL migration files,
Expand Down
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 suite all of them, regardless of you going **database first** or **codebase first**.
Drizzle is designed to perfectly suits 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