diff options
Diffstat (limited to 'main')
-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 ec0d95e4..59de33fe 100644 --- a/main/models.py +++ b/main/models.py @@ -79,7 +79,7 @@ class MirrorUrl(models.Model): class MirrorRsync(models.Model): hostname = models.CharField(max_length=255) - ip = models.IPAddressField() + ip = models.CharField(max_length=24) mirror = models.ForeignKey(Mirror, related_name="rsync_ips") def __unicode__(self): return "%s (%s)" % (self.ip, self.hostname) |