Skip to content

Commit

Permalink
add reports_to field to office model
Browse files Browse the repository at this point in the history
  • Loading branch information
leibovic committed Oct 31, 2011
1 parent 3532f75 commit c3bbbb1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions website/models.py
Expand Up @@ -97,6 +97,7 @@ class Office(models.Model):
current_officer = models.ForeignKey(Sister, blank=True, null=True) current_officer = models.ForeignKey(Sister, blank=True, null=True)


chain_of_command = models.IntegerField(default=0, blank=True, null=True) chain_of_command = models.IntegerField(default=0, blank=True, null=True)
reports_to = models.ForeignKey('Office', blank=True, null=True)


def __unicode__(self): def __unicode__(self):
return unicode(self.title) return unicode(self.title)
Expand Down

0 comments on commit c3bbbb1

Please sign in to comment.