fix password reset with fallbackpassword

This commit is contained in:
tcprod
2026-02-21 00:50:30 +01:00
committed by David Rodenkirchen
parent d57f4baedd
commit 9cf6558892
5 changed files with 24 additions and 14 deletions
+5
View File
@@ -0,0 +1,5 @@
-- Apply this patch after using create_database.sql to extend the schema to support fallback passwords
ALTER TABLE users
ADD COLUMN user_fallback_password VARCHAR(255) DEFAULT NULL
AFTER user_password;