547 B
547 B
-
🎉 Added custom schema support to enums in Postgres:
import { pgSchema } from 'drizzle-orm/pg-core'; const mySchema = pgSchema('mySchema'); const colors = mySchema.enum('colors', ['red', 'green', 'blue']); -
🐛 Split
whereclause in Postgres.onConflictDoUpdatemethod intosetWhereandtargetWhereclauses, to support bothwherecases inon conflict ...clause (#1628, #1302) -
🐛 Fix query generation for
whereclause in Postgres.onConflictDoNothingmethod, as it was placed in a wrong spot (#1628)