Merge pull request #318 from emrysal/bugfix/add-migration-password-reset

This commit is contained in:
Bailey Pumfleet 2021-06-28 18:48:11 +01:00 committed by GitHub
commit 588caa6394
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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")
);