Commit 8604dc4a authored by Enrico Zini's avatar Enrico Zini
Browse files

Seems to work, let's use it

parent 07a6d5d2
......@@ -96,7 +96,7 @@ class Person(models.Model):
sn = models.CharField("last name", max_length=250, null=True, blank=True)
email = models.EmailField("email address", null=False, unique=True)
# This is null for people who still have not picked one
uid = models.CharField("Debian account name", max_length=32, null=True, unique=True, blank=True)
uid = CharNullField("Debian account name", max_length=32, null=True, unique=True, blank=True)
# OpenPGP fingerprint, NULL until one has been provided
fpr = CharNullField("OpenPGP key fingerprint", max_length=80, null=True, unique=True, blank=True)
status = models.CharField("current status in the project", max_length=20, null=False,
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment