Database updates

This commit is contained in:
ivan-pelly
2026-02-21 08:01:29 -08:00
parent fa0903e7be
commit c9ed34ddbb
49 changed files with 699 additions and 331 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
CREATE TABLE `password_history` (
`id_password_history` int NOT NULL,
`id_user` int DEFAULT NULL,
`id_password_history` char(36) NOT NULL,
`id_user` char(36) DEFAULT NULL,
`password_hash` varchar(255) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id_password_history`),