names are unique

This commit is contained in:
j 2011-04-05 12:49:20 +02:00
parent 78711542f7
commit bac32da382
1 changed files with 1 additions and 2 deletions

View File

@ -15,9 +15,8 @@ def get_name_sort(name):
name_sort = unicodedata.normalize('NFKD', person.name_sort)
return name_sort
class Person(models.Model):
name = models.CharField(max_length=200)
name = models.CharField(max_length=200, unique=True)
name_sort = models.CharField(max_length=200)
#FIXME: how to deal with aliases