Changes between Initial Version and Version 1 of Ticket #12685
- Timestamp:
- Jan 25, 2010, 8:29:25 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12685
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #12685 – Description
initial v1 1 1 Given a serialized trivial object, of the type models.Model, which does not override any functions, a deserialized object does not accept the force_insert keyword argument for its save function. 2 2 {{{ 3 3 class XYZ(models.Model): 4 4 xyz_creation_date = models.DateTimeField(verbose_name=_("Date Opened"), … … 16 16 17 17 xyz_synced = models.BooleanField(default=False) 18 18 }}} 19 19 If this model exists on two separate servers, and instances of this object are serialized, passed over the wire, and then deserialized, the save function on the receiving server cannot pass force_insert=True - doing so yields "save() got an unexpected keyword argument 'force_insert'". 20 20