Heya! I've got a really stupid problem, I want to ...
# orm-help
b
Heya! I've got a really stupid problem, I want to add a facebookId to my db. Local, all works fine. But the second it build on production, it says facebookId does not exit on UserCreateInput
1
r
@Bodhi Vandael 👋 I’m sure you forgot to run
prisma generate
b
@Ryan did that too, not working
Ran pretty much every command in order
r
Where are you deploying?
b
DO
digitalocean
r
Could you check if the type definitions under
@prisma/client
contain your new field in
UserCreateInput
?
b
local, yes
r
Not local, on DO.
b
yes found the problem, DO does not rebuild/reinstall node_modules upon push. I had to redeploy and clear build cache. It now works! Thanks for your help though 😊
👍 1