chore: changed the schema of database to only store timestamp without timezone info

This commit is contained in:
Balu Babu
2023-01-19 05:13:21 +05:30
parent 9433aa503b
commit 364381f017
3 changed files with 11 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
-- AlterTable
ALTER TABLE "Account" ALTER COLUMN "loggedIn" SET DATA TYPE TIMESTAMP(3);
-- AlterTable
ALTER TABLE "PasswordlessVerification" ALTER COLUMN "expiresOn" SET DATA TYPE TIMESTAMP(3);
-- AlterTable
ALTER TABLE "User" ALTER COLUMN "createdOn" SET DATA TYPE TIMESTAMP(3);