Changes between Initial Version and Version 6 of Ticket #28210
- Timestamp:
- May 19, 2017, 7:38:52 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28210
- Property Component Uncategorized → Database layer (models, ORM)
- Property Triage Stage Unreviewed → Accepted
- Property Type Uncategorized → Bug
- Property Cc added
- Property Severity Normal → Release 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