Files
seminarhof-e2e-mqo0qs8e/db/sqlite/0004-passwords.sql
2026-06-21 18:46:29 +02:00

5 lines
221 B
SQL

-- Password support for app_user. Format stored: pbkdf2:<iterations>:<salt_b64>:<hash_b64>
-- Existing rows have NULL password_hash and cannot log in until one is set.
ALTER TABLE app_user ADD COLUMN password_hash TEXT;