Top "Django-south" questions

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

migrating django-model field-name change without losing data

I have a django project with a database table that already contains data. I'd like to change the field name …

django-models django-south custom-fields customcolumn
django 1.7 migrations -- how do I clear all migrations and start over from scratch?

So I'm rapidly iterating on a django app at the moment and I'm constantly adjusting models.py. Over the course …

django database-migration django-south django-1.7 django-migrations
Django syncdb and migrate

I'm moving django website from one server to another, and I tried to syncdb, so i've put python manage.py …

django django-south syncdb
How do I migrate a model out of one django app and into a new one?

I have a django app with four models in it. I realize now that one of these models should be …

django migration django-south
Adding new custom permissions in Django

I am using custom permissions in my Django models like this: class T21Turma(models.Model): class Meta: permissions = (("can_…

django django-south django-permissions
Easiest way to rename a model using Django/South?

I've been hunting for an answer to this on South's site, Google, and SO, but couldn't find a simple way …

python django django-models rename django-south
Error creating new content types. Please make sure contenttypes is migrated before trying to migrate apps individually

I am trying to migrate from Django 1.6 to Django 1.8. I was using South for managing migrations in Django 1.6. I have …

django migration django-south django-1.8
Django 1.8 - what's the difference between migrate and makemigrations?

According to the documentation here: https://docs.djangoproject.com/en/1.8/topics/migrations/ it says: migrate, which is responsible for applying …

django database-migration django-south schema-migration
There is no South database module 'south.db.postgresql_psycopg2' for your database

i new to django and I'm getting this error from south but i don't know what i'm missing. I search …

python django django-south
Manage.py : Unknown command: 'migrate'

I'm using django and I'm facing a little problem. I would like to use the 'migrate' command with manage.py …

django sqlite django-south