I am running Prisma 2.3.0 and it seems whenever I ...
# orm-help
k
I am running Prisma 2.3.0 and it seems whenever I do migrations they do not update the database.
r
What commands are you using to perform migrations?
k
prisma migrate --experimental
r
The two commands you need to add tables and necessary migrations to the database are:
Copy code
prisma migrate save --experimental
prisma migrate up --experimental
k
ok
Thanks. I'll try it
it seems to go through but now there's an error about not being able to reach the database.
....and "Got result for unknown id undefined"
r
Could you update to the latest Prisma version 2.6.2 and check if the issue still persists. If so, then check if your connection string is correct.
k
I'll double check but I have it version controlled and the string hasn't changed. It was working fine before.
I tried the command once more and it worked.
I don't understand. Why the hiccup?
Anyways, thanks very much @Ryan
🙌 1
r
Awesome 🎉