[Solved] Django: List field in model? - Code Redirect
https://coderedirect.com › questionsIn my model, I want a field that has a list of triplets. e.g. [[1, 3, 4], [4, 2, 6], [8, 12, 3], [3, 3, 9]]. Is there a field that can store this data in ...
Model field reference | Django documentation | Django
docs.djangoproject.com › en › 4See Specifying the form field for a model field for usage. deconstruct()¶ Returns a 4-tuple with enough information to recreate the field: The name of the field on the model. The import path of the field (e.g. "django.db.models.IntegerField"). This should be the most portable version, so less specific may be better. A list of positional arguments.