I'm trying to switch from prisma to drizzle.
To begin, I've tried introspecting my database, but it fails with an error sonb_build_array(" is not valid JSON.
No logs either. Any idea what could be causing this
npx drizzle-kit introspect
No config path provided, using default 'drizzle.config.ts'
Reading config file '/Users/wilson/Developer/Projects/senja/apps/api/drizzle.config.ts'
Pulling from ['public'] list of schemas
Using 'postgres' driver for database querying
[✓] 49 tables fetched
[⣟] 471 columns fetching
[✓] 0 enums fetched
[⣟] 0 indexes fetching
[⣟] 9 foreign keys fetching
undefined:1
sonb_build_array(
^
SyntaxError: Unexpected token 's', "sonb_build_array(" is not valid JSON
at JSON.parse (<anonymous>)
at defaultForColumn (/Users/wilson/Developer/Projects/senja/node_modules/.pnpm/drizzle-kit@0.24.2/node_modules/drizzle-kit/bin.cjs:19380:55)
What version of
drizzle-orm
are you using?0.33.0
What version of
drizzle-kit
are you using?0.24.2
Describe the Bug
I'm trying to switch from prisma to drizzle. To begin, I've tried introspecting my database, but it fails with an error sonb_build_array(" is not valid JSON.
No logs either. Any idea what could be causing this
Expected behavior
For drizzle to generate a schema my database
Environment & setup
No response