Karo8870

Results 5 comments of Karo8870

Hello! Has anyone found a solution?

I'm not sure if this is a framework problem, but for me setting "strictNullChecks" to true instead of "strict" did the trick. I'm using NestJS with DrizzleORM `v0.33.0`

@Adrian333Dev Could you provide more details? I can't seem reproduce the problem. The `tsconfig.json` and `posts.schema.ts` might help. This is my tsconfig btw: ```JSON { "compilerOptions": { "module": "commonjs", "declaration":...

I found the problem, the circular dependency between users and posts breaks drizzle types. You currently have the following tables: ```ts export const posts = pgTable('posts', { postId: serial('post_id').primaryKey(), content:...

He added a github link with the final code in the description of the video. That final code doesn't have any postId column on the users table, so I'll assume...