Changes between Version 1 and Version 2 of Ticket #28262
- Timestamp:
- Jun 1, 2017, 1:22:00 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28262 – Description
v1 v2 5 5 auditor = models.ForeignKey(User) 6 6 7 class Institution( BaseModel):7 class Institution(Model): 8 8 name = models.CharField(max_length=100) 9 9 10 class Auditor( BaseModel):10 class Auditor(Model): 11 11 user = models.OneToOneField(User) 12 12 institution = models.ForeignKey(Institution, null=True, blank=True)