Created separate SQL file specifically for inserting initial default admin account

This commit is contained in:
Alex Tavarez
2025-09-03 14:28:35 -04:00
parent 77c87921f6
commit 7a8555dc85

14
bin/make_admin.sql Normal file
View File

@@ -0,0 +1,14 @@
PRAGMA foreign_keys = ON;
INSERT INTO users (
username,
password,
email,
perms
)
VALUES (
'root',
'$argon2id$v=19$m=256,t=1,p=4$JRuXmK5RvRJvvpvpWIF2UA$0uf3V1FHaIVmCgp2JfF+Mfrm66ihKXhKkf0RN820y/k',
'admin@sukaato.moe',
'[15, 15, 15, 15, 15, 15]'
);