[Django]-Django Migration: Not reflecting changes | creates only id

6👍

All of your fields have the she y syntax issue: you used a colon instead of an equals sign. It should be:

set_customer_mails = models.BooleanField(default='1')

etc

Leave a comment