Jonathan
Explore posts from serversDTDrizzle Team
•Created by Jonathan on 5/10/2024 in #help
Incorrect relations
This is the query I wrote in typescript that produced the SQL query:
I filtered some columns, as you can see, to make debugging a bit easier. Hopefully someone can help me out, because I do not understand why the problem I described in my post is happening.
4 replies
DTDrizzle Team
•Created by Jonathan on 5/10/2024 in #help
Incorrect relations
For debugging purposes, this is the SQL query that ws executed by Drizzle:
4 replies
DTDrizzle Team
•Created by Jonathan on 5/10/2024 in #help
Incorrect relations
Here are the schemas and relations in code:
4 replies
DTDrizzle Team
•Created by Jonathan on 8/1/2023 in #help
Drizzle kit SQL error
Okay I figured out the issue, but I still dont have a solution. If I use the connection string from the original project inside of my forked project, then drizzle-kit push works perfectly fine.
12 replies
DTDrizzle Team
•Created by Jonathan on 8/1/2023 in #help
Drizzle kit SQL error
A side note:
The code base I am working in is a fork of another project I am working on. I want to give this fork its own database.
12 replies
DTDrizzle Team
•Created by Jonathan on 8/1/2023 in #help
Drizzle kit SQL error
And my db.ts file:
12 replies
DTDrizzle Team
•Created by Jonathan on 8/1/2023 in #help
Drizzle kit SQL error
This is my schema file:
12 replies
TTCTheo's Typesafe Cult
•Created by Jonathan on 6/25/2023 in #questions
Linting errors when building on Vercel that I'm not getting on local machine
I am not yet marking this as the solution, because I am still confused, but...
I happen to have found a fix in the meantime. I changed the build script in my package.json file. Before it runs
next build
it now first runs npx prisma generate
. This seems to have fixed the linting errors.
What I don't understand is what the linting errors in the server/db.ts file have to do with this fix. To me it seems I shouldn't need to generate the prisma client before the build to prevent those linting errors. As mentioned in my post, when hovering over the values in this file in my editor, there were no "any" types to be found.2 replies