create admin user on first start

This commit is contained in:
2025-08-29 16:17:33 +02:00
parent d74531e2e1
commit 2435e25aee

View File

@@ -0,0 +1,11 @@
INSERT INTO users (
name,
email,
hash,
admin
) VALUES (
'admin',
'admin@example.com',
'$argon2id$v=19$m=19456,t=2,p=1$H1WsElL4921/WD5oPkY7JQ$aHudNG8z0ns3pRULfuDpuEkxPUbGxq9AHC4QGyt5odc',
true
);