Open oRafael07 opened 1 month ago
drizzle-orm
0.33.0
drizzle-kit
0.24.2
When I go to introspect the database, drizzle-kit returns an indescribable response.
I had already introspected a database in the same project and it worked normally, now I need to introspect another database and it is returning this response
My drizzle.config.ts
drizzle.config.ts
import { defineConfig } from 'drizzle-kit' import { env } from './src/env' export default defineConfig({ schema: './.database/schema.ts', out: './.migrations', dialect: 'mysql', dbCredentials: { url: env.DATABASE_URL, }, })
Being able to introspect the database
Node: 20.17.0
20.17.0
Can you provide steps to reproduce this bug?
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
When I go to introspect the database,
drizzle-kit
returns an indescribable response.I had already introspected a database in the same project and it worked normally, now I need to introspect another database and it is returning this response
My
drizzle.config.ts
Expected behavior
Being able to introspect the database
Environment & setup
Node:
20.17.0