PrismaORM shifting the UTC time from my db to the timezone of my application
I have records with timestamp fields in mySql DB. Like this: 2024-06-26T19:00:00.000Z
But when I retrieve these records with prisma, they are converted back to my timezone, so the UTC time in database converts to +5 : 2024-06-27T00:00:00.000Z
. However the timezone of my application is in UTC: TZ='UTC'
.