Changes between Version 1 and Version 2 of Ticket #28262


Ignore:
Timestamp:
Jun 1, 2017, 1:22:00 PM (7 years ago)
Author:
Michal Dabski
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28262 – Description

    v1 v2  
    55    auditor = models.ForeignKey(User)
    66
    7 class Institution(BaseModel):
     7class Institution(Model):
    88    name = models.CharField(max_length=100)
    99
    10 class Auditor(BaseModel):
     10class Auditor(Model):
    1111    user = models.OneToOneField(User)
    1212    institution = models.ForeignKey(Institution, null=True, blank=True)
Back to Top