Files
chat/internal/db/schema/000.sql
clawbot f6d33e3ceb
All checks were successful
check / check (push) Successful in 2m40s
fix: rename 000_bootstrap.sql to 000.sql per issue spec
2026-03-25 14:46:24 -07:00

7 lines
252 B
SQL

-- 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);