7 lines
252 B
SQL
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);
|