Skip to content
Open
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/drizzle-kit-pull.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Drizzle Kit does not come with a pre-bundled database driver,
it will automatically pick available database driver from your current project based on the `dialect` - [see discussion](https://github.com/drizzle-team/drizzle-orm/discussions/2203).

Mostly all drivers of the same dialect share the same set of connection params,
as for exceptions like `aws-data-api`, `pglight` and `d1-http` - you will have to explicitely specify `driver` param.
as for exceptions like `aws-data-api`, `pglite` and `d1-http` - you will have to explicitely specify `driver` param.

<CodeTabs items={["AWS Data API", "PGLite", "Cloudflare D1 HTTP"]}>
```ts {6}
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/drizzle-kit-push.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ Drizzle Kit does not come with a pre-bundled database driver,
it will automatically pick available database driver from your current project based on the `dialect` - [see discussion](https://github.com/drizzle-team/drizzle-orm/discussions/2203).

Mostly all drivers of the same dialect share the same set of connection params,
as for exceptions like `aws-data-api`, `pglight` and `d1-http` - you will have to explicitly specify `driver` param.
as for exceptions like `aws-data-api`, `pglite` and `d1-http` - you will have to explicitly specify `driver` param.

<DriversExamples/>

Expand Down
2 changes: 1 addition & 1 deletion src/mdx/Drivers.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
drivers: ['aws-data-api', 'd1-http', 'pglight']
drivers: ['aws-data-api', 'd1-http', 'pglite']
---

{frontmatter.drivers.map((driver) => <><code>{driver}</code>&#32;</>)}