aboutsummaryrefslogtreecommitdiffstats
path: root/api/models.py
diff options
context:
space:
mode:
authorGravatar Hasan-Ahmad <[email protected]>2018-10-29 19:22:01 +0000
committerGravatar Hasan-Ahmad <[email protected]>2018-10-29 19:22:01 +0000
commit342dfc39e4240c5f061abacdba2f7e301b33cbe6 (patch)
tree3ae797514bd5d13582075165936aaa503e38daef /api/models.py
parentChanged image urlfield to ArrayField (diff)
Added help text
Diffstat (limited to 'api/models.py')
-rw-r--r--api/models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/api/models.py b/api/models.py
index bc778330..9990e266 100644
--- a/api/models.py
+++ b/api/models.py
@@ -115,7 +115,8 @@ class SpecialSnake(ModelReprMixin, models.Model):
help_text='Info about a special snake.'
)
images = pgfields.ArrayField(
- models.URLField()
+ models.URLField(),
+ help_text='Images displaying this special snake.'
)
def __str__(self):