`drizzle-zod` and `z.nativeEnum()`
drizzle-zod
to work with z.nativeEnum
after upgrading - as per the image, if i provide z.nativeEnum
during createSelectSchema
, it overrides all other types generated by drizzle-zod
(see last 4 lines)[postgres] composite key does not result in constraint creation
${tableName}_pkey
, but in this case when i look on Neon there's no constraint here
```ts
export const preferenceTable = createTable(
'preference',
{...Self referencing composite primary key table
CORS error when trying to open Drizzle Studio with Supabase
query where condition on foreign key relation
sqliteTable is deprecated
Drizzle Kit Schema Diff?
drizzle-zod is not sending custom message upon validation
Driver error callback
Sequence problem with drizzle-seed
Update column ONLY enabled when column is set as NOT NULL #3666
Column not created even though appears in migration file
Unexpected error happened 😕
Drizzle always says data exists even tho it can be undefined in ts.
export const selectRenter = async (name: string) => {
return db.select().from(renter).where(eq(renter.name, name));
};
export const selectRenter = async (name: string) => {
return db.select().from(renter).where(eq(renter.name, name));
};
Is this community still active?
"There is not enough information to infer relation" with many to many query
ERR error: There is not enough information to infer relation "locations.tags"...
drizzle-zod 0.6.0 breaks my createSelectSchema vs 0.5.1
Issue with $defaultFn and Column Typing in SQLite
Can't upsert with onConflictDoUpdate & generatedAlwaysAsIdentity ID columns?
Cannot generate Typebox schema from Drizzle Enum
import { pgEnum } from "drizzle-orm/pg-core";
import { createInsertSchema } from 'drizzle-typebox'
...