From bd6e8d2d7a76e8f0ffc657769b2f8265a37f3c0f Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Mon, 14 Oct 2024 21:09:56 +0200 Subject: [PATCH] Add: "active" field to Import URLs table --- archivist/apps/importer/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/archivist/apps/importer/models.py b/archivist/apps/importer/models.py index 2286562..0cad64b 100644 --- a/archivist/apps/importer/models.py +++ b/archivist/apps/importer/models.py @@ -25,6 +25,8 @@ class ImportSourceURLs(models.Model): source_type = models.CharField(max_length=1, choices=SOURCE_TYPES, default=None) + active = models.BooleanField(default=True) + class Meta: verbose_name = _("Import Source URL") verbose_name_plural = _("Import Source URLs")