Skip to content
This repository has been archived by the owner on Oct 21, 2018. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
BrendanBerkley committed Feb 27, 2015
2 parents f0f8de8 + fb6645b commit 2602184
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ecwsp/admissions/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ def __unicode__(self):
return unicode(self.name)

class EthnicityChoice(models.Model):
name = models.CharField(max_length=255)
name = models.CharField(max_length=255, unique=True)
def __unicode__(self):
return unicode(self.name)
class Meta:
ordering = ['name']

class ReligionChoice(models.Model):
name = models.CharField(max_length=255)
name = models.CharField(max_length=255, unique=True)
def __unicode__(self):
return unicode(self.name)
class Meta:
Expand Down

0 comments on commit 2602184

Please sign in to comment.