You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
556 B
SQL
15 lines
556 B
SQL
-- Create an admin user (password: "admin123")
|
|
-- The password hash below is for "admin123" using argon2
|
|
-- In practice, register via the API instead of using this script
|
|
INSERT OR IGNORE INTO players (id, email, name, password_hash, role)
|
|
VALUES (
|
|
'admin-00000000-0000-0000-0000-000000000001',
|
|
'admin@knowfoolery.local',
|
|
'Admin',
|
|
'$argon2id$v=19$m=19456,t=2,p=1$placeholder$placeholder',
|
|
'admin'
|
|
);
|
|
|
|
-- Note: The seed questions are loaded automatically via migration 006.
|
|
-- This script exists for any additional manual seeding needs.
|