This commit is contained in:
Manus Sandbox
2025-11-19 08:36:23 -05:00
parent 1313a45879
commit 5085159cf7
75 changed files with 127 additions and 15617 deletions

View File

@@ -1,10 +0,0 @@
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`)
);