Hi everyone, i need you help. I am using Prisma 1....
# orm-help
a
Hi everyone, i need you help. I am using Prisma 1.33 and i executed
prisma deploy -e .env
, this process fail and i go to the logs in container, it show me this
Encountered unknown SQL type timestamptz with column last login. IntrospectedColumn(last login,timestamptz,null,true)
. How can i fix this ? I am using postgres. Thanks for you help
b
https://github.com/prisma/prisma/issues/4190 you can change the last login column to
timestamp without time zone
, just a workaround.
a
Changing to
timestamp without time zone
works but i need to change all columns that have timestampz. Anywhere, thanks you.