diff options
author | Dan McGee <dan@archlinux.org> | 2010-03-06 10:42:51 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-03-06 10:42:51 -0600 |
commit | 65990ccebebd0e7b8beab488a486ef4cab739271 (patch) | |
tree | 85c96b30ce34a9ff81fb1113ce1c97063ebf3108 /main/models.py | |
parent | e485ab531051f41601cd1108114be5bb487082e9 (diff) |
Make mirror notes a text fieldrelease_2010-03-06
Rather than a short 255 character field.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'main/models.py')
-rw-r--r-- | main/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/models.py b/main/models.py index 45cb481c..a214ad7e 100644 --- a/main/models.py +++ b/main/models.py @@ -64,12 +64,12 @@ class Mirror(models.Model): upstream = models.ForeignKey('self', null=True, blank=True) country = models.CharField(max_length=255, db_index=True) admin_email = models.EmailField(max_length=255, blank=True) - notes = models.CharField(max_length=255, blank=True) public = models.BooleanField(default=True) active = models.BooleanField(default=True) isos = models.BooleanField(default=True) rsync_user = models.CharField(max_length=50, null=True, blank=True) rsync_password = models.CharField(max_length=50, null=True, blank=True) + notes = models.TextField(blank=True) def __unicode__(self): return self.name |