Top "Django-south" questions

Tool to provide consistent, easy-to-use and database-agnostic database migrations for Django applications.

django no such table:

I have models in Django set up as below. class Pupil(models.Model): forename = models.CharField(max_length=30) surname = models.…

django django-south
django 1.7 migrate gets error "table already exists"

I 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-migrations
Backwards migration with Django South

Ok, 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
How to reset migrations in Django 1.7

(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-migrations
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). …

django django-south
What's the recommended approach to resetting migration history using Django South?

I'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-south
-bash: ./manage.py: Permission denied

After running: $ ./manage.py migrate I am getting the following error: -bash: ./manage.py: Permission denied Trying to run a …

python django django-south
What is the best approach to change primary keys in an existing Django app?

I have an application which is in BETA mode. The model of this app has some classes with an explicit …

python django data-migration django-south
Why don't my south migrations work?

First, I create my database. create database mydb; I add "south" to installed Apps. Then, I go to this tutorial: …

python django migration django-south
Django - How to rename a model field using South?

I 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