Tool to provide consistent, easy-to-use and database-agnostic database migrations for Django applications.
I have models in Django set up as below. class Pupil(models.Model): forename = models.CharField(max_length=30) surname = models.…
django django-southI am trying to apply a migration but am getting the error: django.db.utils.OperationalError: (1050, "Table 'customers_customer' already …
django django-south django-1.7 django-migrationsOk, so this seems like a really silly thing to ask, and I'm sure I'm missing something somewhere. How do …
django migration django-south(I know there is a title the same as this, but the question is different). I have managed to get …
django migration django-south django-migrationsI am trying to get started with South. I had an existing database and I added South (syncdb, schemamigration --initial). …
django django-southI've accumulated quite a few migrations using South (0.7) and Django (1.1.2) which are starting to consume quite a bit of time …
django django-southAfter running: $ ./manage.py migrate I am getting the following error: -bash: ./manage.py: Permission denied Trying to run a …
python django django-southI have an application which is in BETA mode. The model of this app has some classes with an explicit …
python django data-migration django-southFirst, I create my database. create database mydb; I add "south" to installed Apps. Then, I go to this tutorial: …
python django migration django-southI would like to change a name of specific fields in a model: class Foo(models.Model): name = models.CharField() …
python django django-models django-south