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 ?

link|improve this question

4  
The fact that Django doesn't support such a fundamental thing out of the box kept me from using it to create models at all. The fact that they consider an ORM that handles table creation but not (in-place) table modification to be release-quality almost kept me from using Django entirely. – Glenn Maynard Oct 22 '09 at 9:28
The fact that Django allows such great app pluggability makes Django awesome, and renders it's lack of built-in support for table modification basically irrelevant. How hard is installing an app? – Dominic Rodger Oct 22 '09 at 9:34
@Glenn, plan your models properly during your design phase and you won't have this problem. If you're adding new features then use a migration suite like South. In-place migrations are often complicated; far too complicated for a simple Django management command anyways. – Soviut Oct 23 '09 at 3:22
feedback

5 Answers

up vote 33 down vote accepted

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).

link|improve this answer
1  
+1 South is the awesome! – T. Stone Oct 22 '09 at 9:09
+1 South works great. Have used it in production. – codeape Oct 22 '09 at 13:27
thanks again Dominic! – Hellnar Oct 22 '09 at 17:33
Note: I had problem using South for migrating models with a custom db backend (like django-mssql) – Don Apr 4 '11 at 7:32
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.

link|improve this answer
Then it's not running alter table commands, it's running create table commands. – Dominic Rodger Oct 22 '09 at 8:09
well I have data in the db so it would be great if I overcome this problem without dropping. – Hellnar Oct 22 '09 at 8:09
I think you wanted to say, that syncdb doesNOT perform alter commands. You do not have to drop the table, you can manually add the new field to your sql too. – Zayatzz Oct 22 '09 at 8:10
yes but the question was referencing the use of syncdb, so in this case you would have to drop the table to use syncdb or use the plugin mentioned below. – Aliixx Oct 22 '09 at 8:28
If you are frustrated with South, try Django Evolution instead. Worked nice for me. stackoverflow.com/questions/1605662/… – Dan Abramov May 26 '11 at 8:54
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 ./manage.py evolve --hint --execute, so I'm happy with it.

link|improve this answer
After having used Django Evolution and South for almost a year, I'm changing my opinion. South is awesome. But it's very much like Git in the sense you have to make sure you really understand how it works. If you're typing commands blindly, you'll most likely screw up the first time you or someone on your team makes a mistake. – Dan Abramov Feb 27 at 9:08
feedback

Django currently does not do this automatically. Your options are:

  1. Drop the table from the database, then recreate it in new form using syncdb.
  2. Print out SQL for the database using 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.)
  3. Use South (per Dominic's answer).
link|improve this answer
feedback

Follow these steps:

  1. Export your data to a fixture using the dumpdata management command
  2. Drop the table
  3. Run syncdb
  4. Reload your data from the fixture using the loaddata management command
link|improve this answer
A complete drop and reload for something that should be done in-place? That's terrible. – Glenn Maynard Oct 22 '09 at 9:19
1  
Its a simple management command, not a migration suite! Django has no way of predicting how your data has changed or how to preserve it so it insists that you do it yourself. If you don't like it, use a migration tool like South. – Soviut Oct 23 '09 at 3:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.