chore: add service version

This commit is contained in:
boojack
2022-05-17 21:21:13 +08:00
parent 5d0e9724db
commit 74ab42069f
13 changed files with 66 additions and 55 deletions

View File

@@ -107,9 +107,6 @@ func patchMemo(db *DB, patch *api.MemoPatch) (*api.Memo, error) {
if v := patch.RowStatus; v != nil {
set, args = append(set, "row_status = ?"), append(args, *v)
}
if v := patch.CreatedTs; v != nil {
set, args = append(set, "created_ts = ?"), append(args, *v)
}
args = append(args, patch.ID)