feat: set up basic database migration

This commit is contained in:
Jef Roosens 2024-12-28 10:36:13 +01:00
commit a410e4f9ec
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
6 changed files with 1134 additions and 0 deletions

View file

@ -0,0 +1,4 @@
create table migration_version (
version integer,
updated_at integer
);