Make sure list / task favorites are set per user, not per entity #915

Merged
konrad merged 15 commits from fix/favorites into main 2021-07-10 10:21:54 +00:00
1 changed files with 6 additions and 1 deletions
Showing only changes of commit 821c97b764 - Show all commits

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