Hello everyone. Please I need some help with my pr...
# prisma-client
e
Hello everyone. Please I need some help with my prisma client setup. I have the
schema.prisma
file with all the required info. When I run
prisma generate
, I expect the models defined in the schema file to create tables in the database but that’s not the case. I’m not sure if I’m missing something.
r
Hi @Emmanuel - try run
prisma migrate up --experimental
that should send the updates to your db
e
Thanks. That’s what I was missing.