We\'re trying to rename a column in MySQL (5.1.31, InnoDB) that is a foreign key to another table.
At first, we tried to use Django-South, but came up against a know
In case anyone is looking for the syntax it goes something like this:
alter table customer_account drop foreign key `FK3FEDF2CC1CD51BAF`; alter table customer_account add constraint `FK3FEDF2CCD115CB1A` foreign key (campaign_id) REFERENCES campaign(id);