We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a388e0 commit d59f904Copy full SHA for d59f904
sde_collections/models/candidate_url.py
@@ -5,7 +5,7 @@
5
from django.db import models
6
7
from .collection import Collection
8
-from .collection_choice_fields import DocumentTypes
+from .collection_choice_fields import Divisions, DocumentTypes
9
from .pattern import ExcludePattern, TitlePattern
10
11
@@ -57,6 +57,7 @@ class CandidateURL(models.Model):
57
visited = models.BooleanField(default=False)
58
objects = CandidateURLManager()
59
document_type = models.IntegerField(choices=DocumentTypes.choices, null=True)
60
+ division = models.IntegerField(choices=Divisions.choices, null=True)
61
inferenced_by = models.CharField(
62
"Inferenced By",
63
default="",
0 commit comments