Change schema_migrations version from TEXT to INTEGER
All checks were successful
check / check (push) Successful in 1m42s
All checks were successful
check / check (push) Successful in 1m42s
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
-- Applied as a bootstrap step before the normal migration loop.
|
||||
|
||||
CREATE TABLE IF NOT EXISTS schema_migrations (
|
||||
version TEXT PRIMARY KEY,
|
||||
version INTEGER PRIMARY KEY,
|
||||
applied_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
||||
);
|
||||
|
||||
INSERT OR IGNORE INTO schema_migrations (version) VALUES ('000');
|
||||
INSERT OR IGNORE INTO schema_migrations (version) VALUES (0);
|
||||
|
||||
Reference in New Issue
Block a user