fix: rename 000_bootstrap.sql to 000.sql per issue spec
Some checks failed
check / check (push) Has been cancelled

This commit is contained in:
user
2026-03-25 14:46:13 -07:00
parent a883d708a2
commit 106a8e1a84
2 changed files with 1 additions and 1 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);