Changes between Initial Version and Version 6 of Ticket #28210
- Timestamp:
- 05/19/17 12:38:52 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28210
- Property Cc Simon Charette added
-
Property
Component
changed from
Uncategorized
toDatabase layer (models, ORM)
-
Property
Triage Stage
changed from
Unreviewed
toAccepted
-
Property
Type
changed from
Uncategorized
toBug
-
Property
Severity
changed from
Normal
toRelease blocker
-
Ticket #28210 – Description
initial v6 1 1 Let's say we have the following models: 2 2 {{{ 3 4 5 password = models.CharField(max_length=32, widget=forms.PasswordInput)3 class User(models.Model): 4 email = models.CharField(max_length=255, unique=True) 5 password = models.CharField(max_length=32) 6 6 7 8 7 class Admin(User): 8 pass 9 9 10 11 10 class ThirdPartyUser(User): 11 pass 12 12 }}} 13 13