diff --git a/internal/db/migrations/2026_00_01_000001_create_users_table.up.sql b/internal/db/migrations/2026_00_01_000001_create_users_table.up.sql index 03c0b78..ba9bab4 100644 --- a/internal/db/migrations/2026_00_01_000001_create_users_table.up.sql +++ b/internal/db/migrations/2026_00_01_000001_create_users_table.up.sql @@ -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') ; -- -------------------------------------------------------------