@@ -61,7 +61,7 @@ type EnableCygxYanxuanSpecialAuthorReq struct {
func EnableYanxuanSpecialAuthor(userId, status int) (err error) {
o := orm.NewOrm()
sql := ``
- sql = `UPDATE cygx_yanxuan_special_author SET status=?,modify_time=NOW() WHERE user_id = ? `
+ sql = `UPDATE cygx_yanxuan_special_author SET status=? WHERE user_id = ? `
_, err = o.Raw(sql, status, userId).Exec()
return
}