diff options
Diffstat (limited to '')
-rw-r--r-- | pyblackbird_cc/resources/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pyblackbird_cc/resources/models.py b/pyblackbird_cc/resources/models.py index 2b73c89..27d74e7 100644 --- a/pyblackbird_cc/resources/models.py +++ b/pyblackbird_cc/resources/models.py @@ -73,6 +73,7 @@ class Resource(models.Model): ("Scottish", "Scottish"), ], ) + feature_slot = models.IntegerField(choices=((1, 1), (2, 2), (3, 3)), unique=True, null=True) created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True) |