Files
chat/internal/db/schema/001_initial.sql
clawbot 3f7aec7c47 Split schema: 001 = migrations table only, 002 = all schema
All schema changes go into 002_schema.sql until 1.0.0 is tagged.
No migrations during early development phase.
2026-02-09 17:49:27 -08:00

5 lines
133 B
SQL

CREATE TABLE IF NOT EXISTS schema_migrations (
version INTEGER PRIMARY KEY,
applied_at DATETIME DEFAULT CURRENT_TIMESTAMP
);