fixed double quote problem with users insert statements

This commit is contained in:
2026-05-22 15:58:32 -06:00
parent 67f8143b1d
commit a7d42f515d
@@ -27,17 +27,17 @@ CREATE UNIQUE INDEX IF NOT EXISTS "idx_users_provider"
-- -------------------------------------------------------------
-- INSERT "SYSTEM" USER ----------------------------------------
INSERT INTO `users`
(`username`,`is_admin`,`name`,`email`,`avatar_url`)
INSERT INTO users
(username,is_admin,name,email,avatar_url)
VALUES
("system", true, "System User", "system@localhost", "")
('system', true, 'System User', 'system@localhost', '')
;
-- -------------------------------------------------------------
-- INSERT "ZOMBIE" USER ----------------------------------------
INSERT INTO `users`
(`username`,`is_admin`,`name`,`email`,`avatar_url`)
INSERT INTO users
(username,is_admin,name,email,avatar_url)
VALUES
("zombie", false, "Zombie", "zombie@localhost", "")
('zombie', false, 'Zombie', 'zombie@localhost', '')
;
-- -------------------------------------------------------------