Is there a way to update Prisma model by adding ne...
# orm-help
n
Is there a way to update Prisma model by adding new rows in the model(database) after a user request?
r
@Nikhil Goyal 👋 You would need to automatically add this somehow to your
schema.prisma
and then run these commands via `exec`:
Copy code
prisma migrate dev
prisma generate
👍 1
n
ok