fix delete tag table error

pull/204/head
popstk 2 years ago committed by 1379Monitor
parent 5a1b13fd38
commit 689da9ba95

@ -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