Tagged Questions
South is a tool to provide consistent, easy-to-use and database-agnostic migrations for Django applications.
33
votes
2answers
3k views
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()
rel = models.ForeignKey(Bar)
should change to:
class Foo(models.Model):
...
16
votes
2answers
2k views
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 in my unit tests. I would like to reset the baseline and start a fresh ...
14
votes
2answers
2k views
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 you perform a backwards migration using South on Django?
So I've tweaked my models, created a ...
12
votes
4answers
3k views
Using south to refactor a Django model with inheritence
I was wondering if the following migration is possible with Django south and still retain data.
Before:
I currently have two apps, one called tv, one called movies, each with a VideoFile model ...
9
votes
4answers
476 views
Why use South during initial development?
I'm wondering about the advantages of using (django) South during heavy initial development of a project.
At the early stages of development there's normally rapid model changing, frequent branching ...
8
votes
1answer
329 views
How to unit test a Django South “datamigration”
I created a data migration using south, that takes a versions table and converts it from:
major: 1, minor: 2, micro: 3, release: a
into a simpler:
name: 1.2.3.a
Now I want to test this ...
8
votes
2answers
689 views
Renaming an app with Django and South
I am renaming an application to a more suitable name. In doing so, I want to ensure that South properly migrates the database (renames database tables and changes references in django_content_type or ...
7
votes
2answers
323 views
Django - Change a ForeignKey relation to OneToOne
I am using South with my Django app. I have two models that I am changing from having a ForeignKey relation to having a OneToOneField relation. When I ran this migration on my dev database, it ran ...
6
votes
2answers
332 views
Explicitly set MySQL table storage engine using South and Django
I'm running into an issue that South creates the DB table for a new model as INNODB when I migrate but creates the table as MYISAM when another developer runs their own migration.
The problem with ...
6
votes
3answers
423 views
Migrating Django fixtures?
I have a Django application. I have .json fixture files containing test data, with unit tests that use the data to confirm the application is working properly. I also use South to migrate my ...
5
votes
4answers
155 views
Is using multiple databases and South together possible?
My current project is getting extended with geographical stuff, so I'm trying to integrate GeoDjango and import some shapefiles for starters. My setup consists of the following:
MySQL 5.0 as ...
5
votes
3answers
320 views
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 south migrations as necessary when I change the model.
Save the SQL from each ...
5
votes
2answers
151 views
Benefits To Storing Django With App Code In Version Control
I'm trying to simply the deployment of our application and more easily manage the versions of libraries and frameworks that we depend on.
Does storing Django in our VCS make sense? This would ideally ...
5
votes
1answer
330 views
Adding South to Django project, development & production
Adding South to an existing Django project. I have it installed on both the development machine and the "production" server.
I've done the following on the development machine, then: added South app ...
5
votes
1answer
850 views
Django-reversion and south compatibility
Does django-reversion work well with south migrations?
Are django-reversion and south compatible?
Current versions:
- reversion - 1.2.1
- south - 0.7.1
4
votes
2answers
69 views
What does a South datamigration do compared to a schemamigration?
I recently began digging into the South documentation and discovered that it had two distinct types of migrations:
schemamigration
datamigration
As a result of my ignorance, I've always used ...
4
votes
1answer
262 views
Django 1.3 and South migrations
I have an existing project which extensively uses South migrations to load data into its tables.
Since upgrading to Django 1.3 our unit tests no longer run because they cannot find the data they rely ...
4
votes
1answer
103 views
Can you migrate backwards to before the first migration in South?
Can you migrate an app backwards to before its first migration in Django South? If not, are there plans to add such functionality, perhaps using an option passed to migrate?
4
votes
2answers
356 views
Disable Django South when running unit tests?
Disable Django South when running unit tests? How do you avoid running all of the south migrations when doing django unit testing?
4
votes
1answer
493 views
Advanced Django Book
I have ordered the Django Book, but I wonder if there's a good book which goes beyond the subject discussed in that book. For instance, the following topics are not discussed, but I would be ...
4
votes
1answer
494 views
Django-South introspection rule doesn't work
I'm using Django 1.2.3 and South 0.7.3.
I am trying to convert my app (named core) to use Django-South. I have a custom model/field that I'm using, named ImageWithThumbsField. It's basically just the ...
4
votes
3answers
555 views
How to rename a foreignkey field with South?
Renaming a simple charfield etc seems easy (http://stackoverflow.com/questions/3235995/django-how-to-rename-a-model-field-using-south)
However when I try using the same on a ForeignKey field I get ...
3
votes
2answers
51 views
What is a Django South GhostMigrations exception and how do you debug it?
Made some changes to my Django app's model and used South to migrate them on my development machine (migrations 0004 through 0009). But when trying to migrate these changes on the server, I get a ...
3
votes
2answers
149 views
Using Django South to move from concrete inheritance to abstract inheritance
I have an existing Django project that has several models using concrete inheritance of a base class. After closer consideration, and after reading about what people like Jacob Kaplan-Moss have to say ...
3
votes
2answers
217 views
Workflow for Using Django South with Multiple Code Branches
I'm curious as to how other Django devs manage their database migrations with South when developing with multiple code branches. Let me give a sample scenario.
Say for example you start you ...
3
votes
1answer
89 views
Squashing multiple South migrations into one migration
During development I created many migrations, often going back and forth about how I wanted to implement something.
Now it is time to push it to production, but I am getting errors when replaying all ...
3
votes
3answers
240 views
How do I remove south from a django project
I installed south and tried a few changes using it, which didn't exactly work out the way I wanted it to. Thankfully, my data is safe but locked into south. I want to remove south and use syncdb ...
3
votes
2answers
357 views
django loading data from fixture after backward migration / loaddata is using model schema not database schema
I have recenty came across a problem while importing older data than my current model schema. Flow which I use and lead to error:
dumpdata with python manage.py dumpdata -> 0002
make some ...
3
votes
1answer
255 views
Django South: How to use with multiple installs of codebase and one central database?
I am converting an existing codebase (with several apps) to use South. My codebase is currently installed on 1 development server and 3 production servers. The development has its own database and the ...
3
votes
1answer
72 views
Migrating Built-in Django Models When Upgrading
We're using an older version of Django (1.1.1) and are preparing to upgrade to the latest version (currently 1.2) soon.
None of my searches have brought up the topic of migrating database tables ...
3
votes
2answers
349 views
Django South - turning a null=True field into a null=False field
My question is, what is the best practice for turning a null=True field into a null=False field using Django South. Specifically, I'm working with a ForeignKey.
3
votes
2answers
836 views
How is a rollback with South supposed to work?
Color me confused. Let's assume we've got a Django project with South migrations. Currently, production project version is A, version in development B. Now let's suppose version B is installed into ...
3
votes
2answers
139 views
How do I change the choices in a Django model?
I have a Django model that uses the choices attribute.
COLOR_CHOICES = (
('R', 'Red'),
('B', 'Blue'),
)
class Toy(models.Model):
color = models.CharField(max_length=1, ...
3
votes
2answers
501 views
django-south with django-audit-log
I'm trying to do a django-south migration to an existing application to add django-audit-log to it (to track user-initiated changes of a module), but am running into significant errors. Specifically ...
3
votes
1answer
241 views
How would I use a South migration to load data into Django's auth_group table?
I have some new groups that I'd like to add to Django's "auth_group" table and I'd prefer to use South to "migrate" that data into the database. Unfortunately, I'm not sure what steps I should take to ...
3
votes
2answers
167 views
Extending South Introspection in Django
I have a custom app which I wanted to start using South with. It uses a FK for associating a blog entry from another app (proprietary, not written by me). Problem is when I try to run the initial ...
3
votes
3answers
719 views
How do I access auth User's User.objects.create_user(…) in a south migration?
Instead of using django's auth module I've used my own and already regret it a lot.
In an effort to rectify the situation, I'm trying to migrate the data from my User model to ...
3
votes
2answers
212 views
What does “Migrating a Django application” mean?
I kept thinking a lot about the meaning of migrating a Django app the last few days and heard about migrating Django apps with django-south. Maybe it's just the lack of sufficient English skills (as ...
2
votes
0answers
15 views
On Heroku, is there danger in a Django syncdb / South migrate after the instance has already restarted with changed model code?
On Heroku, as soon as you push new code, the web-serving instances restart... even if the underlying database schema additions/changes (via syncdb or south migrate) haven't yet been applied.
In many ...
2
votes
1answer
64 views
Change Django model column default using South
I'm using South with a Postgresql DB for a Django project.
There is a model field that I'd like to change the default value for going forward. I dont need previous records effected. Just new records.
...
2
votes
1answer
60 views
django-south: chicken+egg with initial data
I have a model:
class Foo(models.Model):
pass
I want to add a type attribute to it. There are a fixed number of types. The existing ones should all have the default type. So I add the type:
...
2
votes
2answers
109 views
Renaming a django model class-name and corresponding foreign keys with south, without loosing the data
Following is my model:
class myUser_Group(models.Model):
name = models.CharField(max_length=100)
class Channel(models.Model):
name = models.CharField(max_length=100)
description = ...
2
votes
2answers
70 views
Programmatically check whether there are django south migrations that need to be deployed
My deployment strategy looks like this (using Fabric):
create a new virtualenv
deploy new code in new virtualenv
show a maintenance page
copy the current db to new db
migrate new db
point new code ...
2
votes
1answer
38 views
How to find out what database (e.g. wether using mysql/pgsql/?) in a django south migration?
I'm writing a migration using Django's South, and it can only work on MySQL databases. Is there anyway I can find out what database is being used (i.e. is this running on mysql or is it on postgres, ...
2
votes
1answer
74 views
Deploying Django App stack that's been developed using South?
So, I've my application stack and I'm ready to deploy it to my webserver.
I'm deploying to a fresh, clean and blank database, so what command to I run? Do I run ./manage.py syncdb or do I use a ...
2
votes
1answer
254 views
Getting error with SOUTH and django migration
I got this error while migrating Sentry app in django. I am using mysql
! Since you have a database that does not support running
! schema-altering statements in transactions, we have had
! to ...
2
votes
1answer
259 views
In a schemamigration, what should be the default value for a null=False field which I'm sure that won't have null values?
I want to add a ForeignKey field to my model. In order to achieve that, I did 3 steps:
Added the ForeignKey field with null=True to my model, and then created a schemamigration.
Created a ...
2
votes
1answer
91 views
Changing South Migration Directory
How do you change the location where South looks for an app's migrations?
By default, South assumes an app's migrations are in /migrations. However, I've migrated the model of a third-party package ...
2
votes
1answer
281 views
Testing Django apps that use South migrations
I'm trying to create some Functional tests for a Django app that uses South migrations.
Eventually, I will also be creating Twill tests.
When I try to run the existing tests, the test database is not ...
2
votes
1answer
245 views
Forward class declaration in Python
I have two classes in order:
class A(models):
...
class B(models):
a = models.ManyToManyField(A)
Now I have to change my model to one below:
class A(models):
b = ...