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 994f398 commit 57dc509Copy full SHA for 57dc509
django/apps/existing_database/models.py
@@ -1,6 +1,7 @@
1
+from mapswipe.db import Model
2
+
3
from django.contrib.gis.db import models as gis_models
4
from django.db import models
-from mapswipe.db import Model
5
6
# NOTE: Django model defination and existing table structure doesn't entirely matches.
7
# This is to be used for testing only.
@@ -66,6 +67,9 @@ class Type(models.IntegerChoices):
66
67
FOOTPRINT = 2, "Validate"
68
CHANGE_DETECTION = 3, "Compare"
69
COMPLETENESS = 4, "Completeness"
70
+ MEDIA = 5, "Media"
71
+ DIGITIZATION = 6, "Digitization"
72
+ STREET = 7, "Street"
73
74
project_id = models.CharField(primary_key=True, max_length=999)
75
created = models.DateTimeField(blank=True, null=True)
0 commit comments