Add schema migration to fix view_date format (#4992)

Also adds index on scene_id and adds a not null constraint to scene_id
This commit is contained in:
WithoutPants
2024-06-24 13:15:54 +10:00
committed by GitHub
parent a8fca47a8c
commit 6775a28ec7
3 changed files with 142 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ const (
dbConnTimeout = 30
)
var appSchemaVersion uint = 63
var appSchemaVersion uint = 64
//go:embed migrations/*.sql
var migrationsBox embed.FS