Bootstrap milestone 0 and default API port 9999

This commit is contained in:
2026-02-04 22:00:29 +03:00
parent 166bc9623b
commit 1528fd654a
15 changed files with 312 additions and 9 deletions

View File

@@ -0,0 +1 @@
DROP TABLE IF EXISTS schema_migrations;

View File

@@ -0,0 +1,4 @@
CREATE TABLE IF NOT EXISTS schema_migrations (
version VARCHAR(255) PRIMARY KEY,
applied_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);