|
@@ -50,7 +50,7 @@ func AddCygxUserLabel(item *CygxUserLabel) (lastId int64, err error) {
|
|
|
// 修改是否关注
|
|
|
func UpdateCygxUserLabelIsFollow(isFollow, sourceId, source int, label string) (err error) {
|
|
|
o := orm.NewOrm()
|
|
|
- sql := `UPDATE cygx_user_label SET is_follow=?,label = ? modify_time=NOW() WHERE source_id=? AND source = ? `
|
|
|
+ sql := `UPDATE cygx_user_label SET is_follow=?,label = ? , modify_time=NOW() WHERE source_id=? AND source = ? `
|
|
|
_, err = o.Raw(sql, isFollow, label, sourceId, source).Exec()
|
|
|
return
|
|
|
}
|