forked from rpkilby/jsonfield
-
Notifications
You must be signed in to change notification settings - Fork 0
Reusable JSONField() for Django
License
l0kix2/django-jsonfield
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
django-jsonfield is a reusable django field that allows you to store validated JSON in your model. It silently takes care of serialization. To use, simply add the field to one of your models. === from django.db import models from jsonfield import JSONField class MyModel(models.Model): json = JSONField() For some DB backends, if you need to use the field in indexes or uniqueness constraints, the default JSONField, (which is a subclass of TextField) may not be suitable. For those cases, JSONCharField (a subclass of CharField) is provided. You will of course need to specify max_length, and it is your responsibility to ensure that this length is sufficient to hold whatever you would like the field to contain.
About
Reusable JSONField() for Django
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- Python 100.0%