Add: "active" field to Import URLs table
This commit is contained in:
parent
15a688d18e
commit
bd6e8d2d7a
1 changed files with 2 additions and 0 deletions
|
@ -25,6 +25,8 @@ class ImportSourceURLs(models.Model):
|
||||||
|
|
||||||
source_type = models.CharField(max_length=1, choices=SOURCE_TYPES, default=None)
|
source_type = models.CharField(max_length=1, choices=SOURCE_TYPES, default=None)
|
||||||
|
|
||||||
|
active = models.BooleanField(default=True)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
verbose_name = _("Import Source URL")
|
verbose_name = _("Import Source URL")
|
||||||
verbose_name_plural = _("Import Source URLs")
|
verbose_name_plural = _("Import Source URLs")
|
||||||
|
|
Loading…
Reference in a new issue