I am trying to get started with South. I had an existing database and I added South (syncdb, schemamigration --initial). Then, I updated models.py to add a field and...
I would like to change a name of specific fields in a model: class Foo(models.Model): name = models.CharField() rel = models.ForeignKey(Bar) should change to: class Foo(models.Model): full_name = models.CharField()...
Ok, so this seems like a really silly thing to ask, and I’m sure I’m missing something somewhere. How do you perform a backwards migration using South on Django?...