Merge branch 'main' into feature/irc-protocol-listener
All checks were successful
check / check (push) Successful in 1m0s

This commit is contained in:
2026-04-01 04:57:41 +02:00
2 changed files with 24 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
-- Bootstrap: create the schema_migrations table itself.
CREATE TABLE IF NOT EXISTS schema_migrations (
version INTEGER PRIMARY KEY,
applied_at DATETIME DEFAULT CURRENT_TIMESTAMP
);
INSERT OR IGNORE INTO schema_migrations (version) VALUES (0);