Closed kevinschaich closed 11 months ago
Are you also using Drizzle ORM v0.29.0? And are you using any custom columns like the one described in #5?
Yes, drizzle-orm
v0.29.0
.
Not sure what qualifies as a custom column, everything I'm importing is from drizzle-orm/pg-core
. There's no custom JSON or anything.
import { boolean, date, doublePrecision, pgEnum, pgTable, text, uuid } from 'drizzle-orm/pg-core'
import { v4 as uuid_v4 } from 'uuid'
Ah I see. Something must have changed in the latest release then. I'll take a look and hopefully patch this soon.
@L-Mario564 can you publish so we’d be able to install this fix?
If I run:
with
ES6
syntax, I get:If I run:
with
ES6
syntax, I get:If I run:
with node
require
syntax, I get:If I run:
with node
require
syntax, I get:require
syntax code:ES6
syntax code:5 seems relevant for the
TypeError: column.getSQLType is not a function
piece.