mirror of
https://github.com/astaxie/beego.git
synced 2024-11-13 06:30:54 +00:00
Merge pull request #7 from flycash/fix4734-1x
Fix 4734: we don't need to reset the id to 0
This commit is contained in:
commit
34334a52be
@ -242,13 +242,7 @@ func (o *orm) Update(md interface{}, cols ...string) (int64, error) {
|
|||||||
func (o *orm) Delete(md interface{}, cols ...string) (int64, error) {
|
func (o *orm) Delete(md interface{}, cols ...string) (int64, error) {
|
||||||
mi, ind := o.getMiInd(md, true)
|
mi, ind := o.getMiInd(md, true)
|
||||||
num, err := o.alias.DbBaser.Delete(o.db, mi, ind, o.alias.TZ, cols)
|
num, err := o.alias.DbBaser.Delete(o.db, mi, ind, o.alias.TZ, cols)
|
||||||
if err != nil {
|
return num, err
|
||||||
return num, err
|
|
||||||
}
|
|
||||||
if num > 0 {
|
|
||||||
o.setPk(mi, ind, 0)
|
|
||||||
}
|
|
||||||
return num, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// create a models to models queryer
|
// create a models to models queryer
|
||||||
|
Loading…
Reference in New Issue
Block a user