Remove externallink field from Mailinglist model

This is not used for anything...
This commit is contained in:
Magnus Hagander
2018-03-21 14:12:26 +01:00
parent d9c9d91da7
commit 26fcd668e2
2 changed files with 18 additions and 1 deletions

View File

@ -20,7 +20,6 @@ class MailingList(models.Model):
group = models.ForeignKey(MailingListGroup, null=False)
listname = models.CharField(max_length=64, null=False, blank=False, unique=True)
active = models.BooleanField(null=False, default=False)
externallink = models.URLField(max_length=200, null=True, blank=True)
description = models.TextField(null=False, blank=True)
shortdesc = models.TextField(null=False, blank=True)