Add the dev auth users to the database

This commit is contained in:
2025-12-17 22:02:23 +09:00
parent 42cb584ef4
commit 158e816ed0
3 changed files with 34 additions and 0 deletions

7
dist/sql/test_data_sqlite.sql vendored Normal file
View File

@@ -0,0 +1,7 @@
-- See users in ../authsources.php
INSERT INTO
users (uname, groups)
VALUES
('admin', 1 | 2 | 4),
('user', 0);