Top "Django-south" questions

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

South migration error: NoMigrations exception for django.contrib.auth

I have been using South on my project for a while, but I recently did a huge amount of development …

database django migration django-south
Django not creating db tables for models (neither with syncdb nor South)

I have a Django project on a Centos VPS. I created some models and debugged them so they validate and …

python django django-south syncdb
Migrating ManyToManyField to null true, blank true, isn't recognized

I have made a model change from standard = models.ManyToManyField(Standard) to standard = models.ManyToManyField(Standard, blank=True, null=True) …

django django-models database-schema django-south django-migrations
Django South error with initial migration

I have a new Django 1.3 project and app that I've created. I added south to my settings.py and have …

django migration django-south
from django.db import models, migrations ImportError: cannot import name migrations

So I've started to experience some issues with south on my Django web server. Migrate command is failing with this …

python django django-south migrate
There is no South database module 'south.db.postgresql_psycopg2' for your database django

I have a django app with version as 1.6.5, i am trying to upgrade it to 1.8, but on the way i …

django postgresql django-south psycopg2
How do I create a new database for an existing App using Django South and set default values?

I'm working with an OS project that uses South to migrate the database. I'm building a new database from scratch …

django django-south django-database
Getting DatabaseError: multiple default values specified for column

I can't figure out what to do to avoid this error whenever I try to make a migration using South …

sql postgresql django-south askbot
Django - South - Is There a way to view the SQL it runs?

Here's what I want to do. Develop a Django project on a development server with a development database. Run the …

python database migration django-south
No fixture named 'X' found

I'm using Django 1.6 and I use South to handle migrations. In most of my application I used to have initial_…

django django-south