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 model. How can I fix this ?
| |||||||||
feedback
|
|
Django doesn't support migrations out of the box. There is a pluggable app for Django that does exactly that though, and it works great. It's called South. If you have difficulty setting it up edit your question and I'll gladly help you out (you might want to post a comment on my answer so I get notified). | |||||||||||
feedback
|
|
Havent used django in a while, but i seem to remember that syncdb does perform alter commands on db tables. you have to drop the table then run again and it will create again. edit: sorry does NOT perform alter. | |||||||||||
feedback
|
|
As suggested in top answer, I tried using South, and after an hour of frustration with obscure migration errors decided to go with Django Evolution instead. I think it's easier to get started with than South, and it worked perfectly the first time I typed | |||
feedback
|
|
Django currently does not do this automatically. Your options are:
| |||
|
feedback
|
|
Follow these steps: | |||||||
feedback
|