update the updated column!

This commit is contained in:
ryan 2018-03-22 20:05:04 +01:00
parent d554c6f9be
commit 0c7294593c

View File

@ -113,7 +113,7 @@ func (r *SqlAnnotationRepo) Update(item *annotations.Item) error {
existing.Tags = item.Tags
if _, err := sess.Table("annotation").Id(existing.Id).Cols("epoch", "text", "region_id", "tags").Update(existing); err != nil {
if _, err := sess.Table("annotation").Id(existing.Id).Cols("epoch", "text", "region_id", "updated", "tags").Update(existing); err != nil {
return err
}