Okay I write this outside of the thread, because I...
# orm-help
p
Okay I write this outside of the thread, because I fixed the first error with some help by @fgreinus, but I do receive another error now, which is obviously not directly related to the first one, as that was a pure MySQL issue. When I try to deploy the changes to the database, with
prisma deploy
, I receive the following error:
Copy code
▸    Could not connect to server at <http://localhost:4466>. Please check if your server is running.
Copy code
docker ps -a
delivers:
Copy code
CONTAINER ID        IMAGE                                  COMMAND                  CREATED             STATUS                   PORTS                          8fe67f1d8ee3        prismagraphql/prisma:1.7   "/bin/sh -c /app/sta…"   5 minutes ago       Up 5 minutes        0.0.0.0:4466->4466/tcp  

NAMES
service_prisma_1
Any ideas?
Solved the issue. The installed version of prisma was not compatible with the version of my package.
Downgrading solved it eventually.