summaryrefslogtreecommitdiff
path: root/main/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'main/models.py')
-rw-r--r--main/models.py2
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