I have a Django project and such array in it:
{(0,0):{'a':True,'b':False ... },(0,1):{'a':True,'b':True ... },(1,1):{'a':True,'b':False ... }... }
I need to store this array in PostgreSQL database. I thought the ArrayField
could help, but I just have no idea how to declare such array.
I've read https://docs.djangoproject.com/en/1.8/ref/contrib/postgres/fields/
but there was not my situation.
Could you show me an example?
I'm using Django 1.8