From 8604dc4a7e183399e461debc7684d43ba766bcc5 Mon Sep 17 00:00:00 2001 From: Enrico Zini Date: Tue, 13 Mar 2012 15:31:28 +0100 Subject: [PATCH] Seems to work, let's use it --- backend/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/models.py b/backend/models.py index 930528b0..d636b031 100644 --- a/backend/models.py +++ b/backend/models.py @@ -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, -- GitLab