I want to remove null=True from a TextField:
- footer=models.TextField(null=True, blank=True) + footer=models.TextField(blank=True, default=\'\')
Another reason for this maybe because you try to set a column to NOT NULL when it actually already has NULL values.
NOT NULL
NULL