So, in the Django docs for creating new fields in Postgresql says ( Full description ):
... it is recommended that you always create new columns with null=True , as they will be added immediately.
What if I want to create an ArrayField, something like this:
tags = ArrayField(models.CharField(max_length=255, blank=True, default=''), default=list, null=True)
Should I pass null=True to the CharField that is inside this ArrayField ?
source share