Changes between Initial Version and Version 6 of Ticket #28210


Ignore:
Timestamp:
May 19, 2017, 7:38:52 AM (7 years ago)
Author:
Tim Graham
Comment:

I can't reproduce using the steps described in the description. How does ThirdPartyUser.objects.create() raise a dictionary? Please clarify.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28210

    • Property Component UncategorizedDatabase layer (models, ORM)
    • Property Triage Stage UnreviewedAccepted
    • Property Type UncategorizedBug
    • Property Cc Simon Charette added
    • Property Severity NormalRelease blocker
  • Ticket #28210 – Description

    initial v6  
    11Let's say we have the following models:
    22{{{
    3     class User(models.Model):
    4         email = models.CharField(max_length=255, unique=True)
    5         password = models.CharField(max_length=32,  widget=forms.PasswordInput)
     3class User(models.Model):
     4    email = models.CharField(max_length=255, unique=True)
     5    password = models.CharField(max_length=32)
    66
    7     class Admin(User):
    8         pass
     7class Admin(User):
     8    pass
    99
    10     class ThirdPartyUser(User):
    11         pass
     10class ThirdPartyUser(User):
     11    pass
    1212}}}
    1313
Back to Top