Changes between Initial Version and Version 1 of Ticket #35393


Ignore:
Timestamp:
Apr 23, 2024, 3:47:10 AM (4 weeks ago)
Author:
Sarah Boyce
Comment:

Thank you for the report Willem! Replicated on main and can see your patch resolves the issue (thank you for providing that). This just needs a test to be accepted 👍

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35393

    • Property Needs tests set
    • Property Owner changed from nobody to Willem Van Onsem
    • Property Triage Stage UnreviewedAccepted
    • Property Status newassigned
    • Property Summary InlineAdmin's are *not* possible with an *editable* UUIDField as primary key.InlineAdmin's are not possible with an editable UUIDField as primary key.
  • Ticket #35393 – Description

    initial v1  
    1212    id = models.UUIDField(primary_key=True, default=uuid.uuid4)
    1313    name = models.CharField(max_length=128)
     14    parent = models.ForeignKey(Parent, on_delete=models.CASCADE)
    1415}}}
    1516
Back to Top