I updated my schema and then I did a `prisma deplo...
# orm-help
e
I updated my schema and then I did a
prisma deploy
. It says
Created field 'test' of type Boolean
, so everything seems fine. Nevertheless, when I go to the Playground, this new field does not exists and I can't see it in the generated
prisma.graphql
. I recently updated Prisma to version 1.7.3 (from 1.3.0). Any idea of what's happening?
t
In
1.7
CLI is not taking care of getting new schema after deploy, it can be done via the post deployment hook, please refer to the upgrade guide: https://www.prisma.io/docs/reference/upgrade-guides/upgrading-prisma/upgrade-to-1.7-iquaecuj6b#download-the-prisma-graphql-schema-and-invoking-codegen
e
Thanks @taikn!