adapter-sqlite: all repo implementations + wire fn + migrations copy
This commit is contained in:
6
migrations_sqlite/20260319000003_add_app_settings.sql
Normal file
6
migrations_sqlite/20260319000003_add_app_settings.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
CREATE TABLE IF NOT EXISTS app_settings (
|
||||
key TEXT PRIMARY KEY,
|
||||
value TEXT NOT NULL
|
||||
);
|
||||
|
||||
INSERT OR IGNORE INTO app_settings(key, value) VALUES ('library_sync_interval_hours', '6');
|
||||
Reference in New Issue
Block a user