Moray
Explore posts from serversPPrisma
•Created by Moray on 8/23/2024 in #help-and-questions
Introspecting an existing database doesn't handle join tables correctly
I'm in the process of adding Prisma to an existing project with a large existing database (originally created with Prisma 1). I've introspected the database and edited the schema so that the names of the relation fields are cased correctly. I then created an initial migration SQL file as per the guide and marked it as applied.
When I try to create a new migration, I keep getting errors telling me that ALL of my existing JOIN tables are incorrect:
What's going on here, and how do I fix it?
3 replies
PPrisma
•Created by Moray on 8/19/2024 in #help-and-questions
Why are client files generated in node_modules and what does that mean for production builds?
In Prisma 1, generated files were kept within source control. This makes sense to me as it meant edits to the schemas and generated files were kept together, and at any given moment I could see locally exactly what code is running on our production servers.
In Prisma >=2 though, client files are in
node_modules
so they are not in our repositories. Obviously this makes our repos much lighter which is great, but presumably every time we make a database change, we need to not only deploy it, but then each production server needs to regenerate its client files?
Now if the schema files are in source control and the version of prisma/client
is pinned in package.json
then the output of the file generate should be the same every time, but the fact that I can't guarantee to my boss exactly what code we have running in production, the commit hash for that code, and the test results for that commit hash makes me very uneasy.
So I guess the main question is am I thinking too much about this and I should just need to add a line to our build scripts to get each app server to rebuild the client files every deploy? Or is there something I've missed?2 replies
PPrisma
•Created by Moray on 8/16/2024 in #help-and-questions
Upgrading from Prisma 1
I'm following the guide I've installed the
[email protected]
but when I try to run yarn prisma init
to setup the new project I get "Error: Unknown binaryTarget debian-openssl-3.3.x and no custom binaries were provided". How do I proceed?
I've tried installing [email protected]
as suggested in this question but still get the same error.
I'm running with yarn on Node 16 on EndeavourOS (Arch). I have openssl 3.3.1 package installed also.7 replies