I want a field in my Django model to store array data.
For instance consider a model that stores Student data. I want an array field that stores the marks of that student as an integer array. What can I do?
I am not using PostGreSQL so I cannot use ArrayField.
class Student(models.Model):
...
...
marks = models.?
Mark, with aForeignKeytoStudent.