24 lines
505 B
Markdown
24 lines
505 B
Markdown
## New Features
|
|
|
|
### 🎉 Support for `pglite` driver
|
|
|
|
You can now use pglite with all drizzle-kit commands, including Drizzle Studio!
|
|
|
|
```ts
|
|
import { defineConfig } from "drizzle-kit";
|
|
|
|
export default defineConfig({
|
|
dialect: "postgresql",
|
|
driver: "pglite",
|
|
schema: "./schema.ts",
|
|
dbCredentials: {
|
|
url: "local-pg.db",
|
|
},
|
|
verbose: true,
|
|
strict: true,
|
|
});
|
|
```
|
|
|
|
## Bug fixes
|
|
|
|
- mysql-kit: fix GENERATED ALWAYS AS ... NOT NULL - [#2824](https://github.com/drizzle-team/drizzle-orm/pull/2824) |