All schema changes go into 002_schema.sql until 1.0.0 is tagged. No migrations during early development phase.
5 lines
133 B
SQL
5 lines
133 B
SQL
CREATE TABLE IF NOT EXISTS schema_migrations (
|
|
version INTEGER PRIMARY KEY,
|
|
applied_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
|
);
|