Added migration for ResetPasswordRequest

This commit is contained in:
Alex van Andel 2021-06-28 15:39:45 +00:00
parent 5ebd9d5270
commit e6ce82867c

View file

@ -0,0 +1,10 @@
-- CreateTable
CREATE TABLE "ResetPasswordRequest" (
"id" TEXT NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updatedAt" TIMESTAMP(3) NOT NULL,
"email" TEXT NOT NULL,
"expires" TIMESTAMP(3) NOT NULL,
PRIMARY KEY ("id")
);