Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I am removing a NOT NULL field using Django South, I get the following message:

? The field 'VisitOrder.end_date' does not have a default specified, yet is NOT NULL.
? Since you are removing this field, you MUST specify a default
? value to use for existing rows. Would you like to:
?  1. Quit now, and add a default to the field in models.py
?  2. Specify a one-off value to use for existing columns now
?  3. Disable the backwards migration by raising an exception.
? Please select a choice: 

Why does South need this, given it's going to remove the field anyhow?

share|improve this question

1 Answer

up vote 11 down vote accepted

Django South allows you to move forwards or backwards through migrations. So, if you ever decided to undo a migration, South would re-create the fields that were deleted. That is why South is asking if you want to specify a default value or "disable the backwards migration by raising an exception."

share|improve this answer
2  
Thanks. To confirm, the third choice means "don't specify a default, in which case later on if you migrate backwards i.e. undelete this field, I'll throw an exception at that point"? – Ghopper21 Aug 7 '12 at 15:25
1  
That is correct. – Garrett Hyde Aug 7 '12 at 16:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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