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

pull/322/head
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
1 changed files with 10 additions and 0 deletions

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