adding dummy avatars

This commit is contained in:
2026-05-22 16:38:29 -06:00
parent 2d34202c9e
commit 50546ae4d4
@@ -30,7 +30,7 @@ CREATE UNIQUE INDEX IF NOT EXISTS "idx_users_provider"
INSERT INTO users
(username,is_admin,name,email,avatar_url)
VALUES
('system', true, 'System User', 'system@localhost', '')
('system', true, 'System User', 'system@localhost', '/uploads/avatars/system.png')
;
-- -------------------------------------------------------------
@@ -38,6 +38,6 @@ VALUES
INSERT INTO users
(username,is_admin,name,email,avatar_url)
VALUES
('zombie', false, 'Zombie', 'zombie@localhost', '')
('zombie', false, 'Zombie', 'zombie@localhost', '/uploads/avatars/zombie.png')
;
-- -------------------------------------------------------------