https://project.mdnd-it.cc/work_packages/94
This commit is contained in:
2025-08-23 04:25:28 +02:00
parent 725516ad6c
commit 19cfa031d0
25823 changed files with 1095587 additions and 2801760 deletions
+5
View File
@@ -0,0 +1,5 @@
-- Update test user passwords with correctly hashed password123
UPDATE "Users" SET password = '$2b$10$dPXxS9Byg7AbB.fngFtNWel1llS1nHJlQrTO4zQToy7vVitS9mr96' WHERE username IN ('john_doe', 'jane_premium', 'teacher_bob', 'admin_user', 'new_user');
-- Verify the update
SELECT username, LEFT(password, 20) AS password_hash, state FROM "Users" WHERE username IN ('john_doe', 'jane_premium', 'teacher_bob', 'admin_user', 'new_user');