github drizzle-team/drizzle-orm drizzle-kit@0.31.1

latest releases: 0.44.5, 0.44.4, 0.44.3...
4 months ago

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:

  1. Enable extensions schemas in drizzle.config.ts
import  { defineConfig } from "drizzle-kit";

export default defineConfig({
  dialect: 'gel',
  schemaFilter: ['ext::auth', 'public']
});
  1. Run drizzle-kit pull

  2. Done!

Don't miss a new drizzle-orm release

NewReleases is sending notifications on new releases.