Reset Password

This commit is contained in:
2025-05-13 13:14:20 -06:00
parent 01929847c0
commit 1020e39da9
6 changed files with 699 additions and 28 deletions

6
script_table.txt Normal file
View File

@@ -0,0 +1,6 @@
CREATE TABLE recuperacion_password (
id INT IDENTITY(1,1) PRIMARY KEY,
email NVARCHAR(255) NOT NULL,
codigo NVARCHAR(10) NOT NULL,
expiracion DATETIME NOT NULL
);