add basic migration support

This commit is contained in:
io 2021-09-17 06:34:44 +00:00
parent 191214dbd6
commit b906abe2b1
3 changed files with 41 additions and 1 deletions

View file

@ -6,3 +6,7 @@ CREATE TABLE posts (
-- UTC Unix timestamp in seconds
published_at REAL NOT NULL
);
CREATE TABLE migrations (
migration_version INTEGER NOT NULL
);