I need to save a dictionary in a model\'s field. How do I do that?
For example I have this code:
def create_random_bill(self): name_chars = re.co
I just discovered the django-jsonfield package, which
is a reusable Django field that allows you to store validated JSON in your model.
Looks like a viable option to achieve what you want.