diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-11-02 18:19:03 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-08 09:58:49 +0200 |
commit | 1878345992d0272c146cbeec2e62f3ed24907f1e (patch) | |
tree | 37336a463b9a68d957fa30ce721ca9452826b7b7 /ishtar_common/models.py | |
parent | 98ed6a871b21d8f80af5d386a1b59288bd862830 (diff) | |
download | Ishtar-1878345992d0272c146cbeec2e62f3ed24907f1e.tar.bz2 Ishtar-1878345992d0272c146cbeec2e62f3ed24907f1e.zip |
JSON types: multi valued choices
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 6da129adb..9c508c9fc 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -683,6 +683,7 @@ JSON_VALUE_TYPES = ( ("F", _("Float")), ("D", _("Date")), ("C", _("Choices")), + ("MC", _("Multi-choices")), ) |