forked from 0x2620/pandora
names are unique
This commit is contained in:
parent
fb0ad3a1e0
commit
6f997ab1b5
1 changed files with 1 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue