fix delete tag table error

pull/146/head
popstk 2 years ago
parent e4e7fe546d
commit a3f4ba4bab

@ -98,7 +98,7 @@ func (t tagServiceImpl) Delete(ctx context.Context, id int32) error {
}
postTagDAL := dal.GetQueryByCtx(txCtx).PostTag
_, err = tagDAL.WithContext(txCtx).Where(postTagDAL.TagID.Eq(id)).Delete()
_, err = postTagDAL.WithContext(txCtx).Where(postTagDAL.TagID.Eq(id)).Delete()
return err
})

Loading…
Cancel
Save