Changes between Initial Version and Version 1 of Ticket #33512


Ignore:
Timestamp:
Feb 14, 2022, 12:39:30 AM (2 years ago)
Author:
Mariusz Felisiak
Comment:

Thanks for the report! It looks like a different scenario for the same issue as described in #24539.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33512

    • Property Resolutionduplicate
    • Property Status newclosed
    • Property Summary DateTimeField auto_add_now is NUL when creating child model object referencing parent model's objectCreating a child instance with a parent containing DateTimeField(auto_add_now=True) raises IntegrityError.
  • Ticket #33512 – Description

    initial v1  
    1313
    1414
    15 class ChildModel(SomeBaseModel):
     15class ChildModel(ParentModel):
    1616    some_field = models.CharField(max_length=12)
    1717}}}
Back to Top