drizzle-postgresql migratin error using nestjs framework
hello guys can you help me with this when ever i try to migrate i get like this error but drizzle-kit generation work why is this migration is not working ?
1 Reply
and for this my drizzle-config file was like this ->
import { defineConfig } from 'drizzle-kit';
export default defineConfig({
out: './drizzle',
schema: './src/**/schema.ts',
dialect: 'postgresql',
dbCredentials: {
url: process.env.DATABASE_URL!,
},
});