Fix a bug in DB migration

This commit is contained in:
lawl 2021-04-05 14:37:37 +02:00
vanhempi 163429138c
commit baa0d58a47
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa

Näytä tiedosto

@ -57,7 +57,7 @@ func initDatabase(conn *sql.DB) {
func migrateDatabase(conn *sql.DB, currentVersion int) {
migrations := []string{
"ALTER TABLE history add column workdir varchar(4096)",
"ALTER TABLE history add column workdir varchar(4096) DEFAULT ''",
}
if !(len(migrations) > currentVersion) {