exclude pk_only models from beeing save_related
This commit is contained in:
@ -191,7 +191,7 @@ class Model(ModelRow):
|
|||||||
value = [value]
|
value = [value]
|
||||||
|
|
||||||
for val in value:
|
for val in value:
|
||||||
if not val.saved or save_all:
|
if (not val.saved or save_all) and not val.__pk_only__:
|
||||||
await val.upsert()
|
await val.upsert()
|
||||||
update_count += 1
|
update_count += 1
|
||||||
if follow:
|
if follow:
|
||||||
|
|||||||
Reference in New Issue
Block a user