You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using drizzle and infering types, i get this error. Is this on the radar?
Here you have a minimal example of a type:
constExampleTable=pgTable('example',t=>({id: t.uuid().notNull().primaryKey().defaultRandom(),example: t.varchar({length: 256}).notNull(),}));typeExample=InferSelectModel<typeofExampleTable>;// this cannot be used as an api type
The text was updated successfully, but these errors were encountered:
When using drizzle and infering types, i get this error. Is this on the radar?
Here you have a minimal example of a type:
The text was updated successfully, but these errors were encountered: