I have added new fields to model and tried "python manage.py makemigrations" . It gave me below error. Can anyone help me?
model added
pm_comments = models.TextField(null=True, blank=True,verbose_name='PM Comments') archived = models.BooleanField(default=False,blank=True,verbose_name='Archived')
django.db.utils.ProgrammingError: ('42S22', "[42S22] [Microsoft][ODBC Driver 13 for SQL Server][SQL Server]Invalid column name 'pm_comments'. (207) (SQLExecDirectW); [42S22] [Microsoft][ODBC Driver 13 for SQL Server][SQL Server]Invalid column name 'archived'. (207)")
archived? - wogsland