Add sqlite and config support

This commit is contained in:
2025-10-09 11:33:06 +08:00
parent 5053d19d73
commit 10b89aee17
14 changed files with 758 additions and 33 deletions

View File

@@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
DROP TABLE dl_games;

View File

@@ -0,0 +1,4 @@
-- Your SQL goes here
CREATE TABLE dl_games (
serial_number CHARACTER(10) NOT NULL PRIMARY KEY
)