Django South – table already exists
I am trying to get started with South. I had an existing database and I added South (syncdb, schemamigration –initial). Then, I updated … Read more
I am trying to get started with South. I had an existing database and I added South (syncdb, schemamigration –initial). Then, I updated … Read more
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 … Read more
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 … Read more