Initially I got this error:
which I correct by: deleting all migrations files in the migrations folder of the specific app.
I deleted all except the : _init_.py
then I run makemigrations and migrate - smoothly ! thus creating a fresh / new migrations file:
0001_initial.py
then I got the error mentioned above:
My solution, by surprise was to comment out all the parts giving error in the newly created file (0001_initial.py):
if say: info_available wad giving me an error:
as in
Exception Type: ProgrammingError
Exception Value: column myApp_verb.date does not exist
what I did was to comment that out...
#("info_available", models.DateField(default=datetime.date.today)),
then:
then I run makemigrations and migrate - AND ALL OK