Changes between Initial Version and Version 1 of Ticket #33512
- Timestamp:
- Feb 14, 2022, 12:39:30 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33512
- Property Resolution → duplicate
- Property Status new → closed
- Property Summary DateTimeField auto_add_now is NUL when creating child model object referencing parent model's object → Creating a child instance with a parent containing DateTimeField(auto_add_now=True) raises IntegrityError.
-
Ticket #33512 – Description
initial v1 13 13 14 14 15 class ChildModel( SomeBaseModel):15 class ChildModel(ParentModel): 16 16 some_field = models.CharField(max_length=12) 17 17 }}}