aboutsummaryrefslogtreecommitdiff
path: root/internal/db
diff options
context:
space:
mode:
Diffstat (limited to 'internal/db')
-rw-r--r--internal/db/issue.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/db/issue.go b/internal/db/issue.go
index 8a90fe19..bb935dd9 100644
--- a/internal/db/issue.go
+++ b/internal/db/issue.go
@@ -408,6 +408,7 @@ func (issue *Issue) ReadBy(uid int64) error {
}
func updateIssueCols(e Engine, issue *Issue, cols ...string) error {
+ cols = append(cols, "updated_unix")
_, err := e.ID(issue.ID).Cols(cols...).Update(issue)
return err
}