This commit is contained in:
Manus Sandbox
2025-11-19 08:41:10 -05:00
parent 5085159cf7
commit 37e0f8da49
54 changed files with 13118 additions and 55 deletions

View File

@@ -0,0 +1,10 @@
CREATE TABLE `passwordResetTokens` (
`id` int AUTO_INCREMENT NOT NULL,
`userId` int NOT NULL,
`token` varchar(255) NOT NULL,
`expiresAt` timestamp NOT NULL,
`used` boolean NOT NULL DEFAULT false,
`createdAt` timestamp NOT NULL DEFAULT (now()),
CONSTRAINT `passwordResetTokens_id` PRIMARY KEY(`id`),
CONSTRAINT `passwordResetTokens_token_unique` UNIQUE(`token`)
);