Drop favorites column

This commit is contained in:
kolaente 2021-07-09 22:26:23 +02:00
parent 0bb6ed98f5
commit 821c97b764
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 6 additions and 1 deletions

View File

@ -98,7 +98,12 @@ func init() {
}
}
return nil
err = dropTableColum(tx, "tasks", "is_favorite")
if err != nil {
return err
}
return dropTableColum(tx, "lists", "is_favorite")
},
Rollback: func(tx *xorm.Engine) error {
return nil