I have recently updated my model, added a BooleanField to it however when I do python manage.py syncdb
, it doesn\'t add the new field to the database for the mo
Django currently does not do this automatically. Your options are:
python manage.py sql (appname)
, find the added line for the field and add it manually using alter table
SQL command. (This will also allow you to choose values of the field for your current records.)