Renaming a simple charfield etc seems easy (http://stackoverflow.com/questions/3235995/django-how-to-rename-a-model-field-using-south)

However when I try using the same on a ForeignKey field I get an error:

_mysql_exceptions.OperationalError: (1091, "Can't DROP '[new_fkey_field_name]'; check that column/key exists")

Which stems from the migration trying to run the backwards for some reason (as evidenced in the trace).

Any ideas?

link|improve this question

49% accept rate
Looks like problem is on MySql side. - What storage engine did you use? - Do you use MyISAM(which does not support referential integrity)? - Did you try the it with sqlite of postgresql? – mirnazim Aug 15 '10 at 12:25
Similar question here: stackoverflow.com/questions/1600129/… – Török Gábor May 17 '11 at 13:23
feedback

3 Answers

First, you need to use the db column name not the one in the model. Eg: foobar_id not foobar.

Then you need to drop the fk constraints and recreate them after renaming:

db.drop_foreign_key('app_model', 'old_id')
db.rename_column('app_model', 'old_id', 'new_id')
db.alter_column('app_model', 'new_id', models.ForeignKey(to=orm['app.OtherModel']))

If your fk is nullable you need to use change it to:

db.alter_column('app_model', 'new_id', models.ForeignKey(null=True, to=orm['app.OtherModel']))
link|improve this answer
This doesn't work with MySQL 5.5.13 (south 0.7.3) drop_foreign_key does not find the foreign key constraint. – Eloff Sep 2 '11 at 18:29
Shouldn't alter_column() be using 'new_id'? – del Oct 7 '11 at 8:55
feedback

When renaming a ForeignKey, remember to add '_id' to the end of the field name you use in Django. E.g.

db.rename_column('accounts_transaction', 'operator_id', 'responsible_id')

And not db.rename_column('accounts_transaction', 'operator', 'responsible')

But I have only tested this on sqlite (which don't actually have the ALTER_TABLE at all), so I don't know if it will actually work on mysql/psotgres:(

link|improve this answer
feedback

MySQL users ought to be aware of this bug in south, if indeed it still applies:

http://south.aeracode.org/ticket/697

The workaround is to conduct the migration in 3 steps:

1) Add new field

2) data migrate the data to the new field

3) delete the old field

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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