Re: BooleanField ignored by makemigrations Django 2.0

2018-02-13 Thread Andy
Your app is most likely not listed in installed_apps when makemigrations is not picking up anything. Or its just because you named it model.py instead of models.py? Is any other model of that app picked up by makemigrations? Am Donnerstag, 8. Februar 2018 23:28:19 UTC+1 schrieb Gary Mumford: >

BooleanField ignored by makemigrations Django 2.0

2018-02-08 Thread Gary Mumford
Hi, I have just installed Django 2.0 and Python 3.6.3. I am not a noobie, but it has been a while since I djangoed. I have several fields in a model.py which are BooleanField type. When running makemigrations.py, these fields are being ignored and not being generated into the migrations code