I need to rename a foreign key in my django model using south migrations. I thought I was in luck when I found this thread How to rename a foreignkey field with South? However, all the methods described there fail, with various errors. Does someone actually know the proper way to do this?
I want to rename SomeModel.registered_to = models.ForeignKey( User )
to SomeModel.owner = models.ForeignKey( User )
and keep the relation between User
and owner
Any help would be appreciated!