dm_scripts = ArrayField(models.TextField(blank=True, null=True), default=list)
I have a Django model, and I wanted to use the ArrayField to store a list of TextFiles. The order matters, and I've been asked to allow a user to reorder these. How would you do that?
I've googled and searched here, but found nothing. Even Django's official documentation doesn't mention this.