·
8 commits
to main
since this release
Fixed drizzle-kit pull
bugs when using Gel extensions.
Because Gel extensions create schema names containing ::
(for example, ext::auth
), Drizzle previously handled these names incorrectly. Starting with this release, you can use Gel extensions without any problems. Here’s what you should do:
- Enable extensions schemas in
drizzle.config.ts
import { defineConfig } from "drizzle-kit";
export default defineConfig({
dialect: 'gel',
schemaFilter: ['ext::auth', 'public']
});
-
Run
drizzle-kit pull
-
Done!