dist/sql: move test data to test_data_sqlite.sql

This commit is contained in:
2026-01-13 09:34:30 +09:00
parent 1766cc23d6
commit 8f4dfc992e
2 changed files with 8 additions and 4 deletions

View File

@@ -33,10 +33,6 @@ CREATE TABLE motd (
`content` TEXT
);
/*
INSERT INTO motd (title, content)
VALUES ("MOTD ./dev.sh", "du kan endre motd i admin panelet");
*/
CREATE TABLE door (`time` INTEGER PRIMARY KEY, `open` BOOLEAN);
INSERT INTO

View File

@@ -5,3 +5,11 @@ INSERT INTO
VALUES
('admin', 1 | 2 | 4),
('user', 0);
INSERT INTO
motd (title, content)
VALUES
(
'MOTD ./dev.sh',
'du kan endre motd i admin panelet'
);