South is a database-independent migration manager for django
24
votes
3answers
4k views
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 to do this.
I want to rename a Django model using South.
Say you have the following:
class ...
24
votes
2answers
2k views
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 in a separate app. I do have south installed for migrations, but I don't think this is something it can ...
18
votes
3answers
5k views
Django South - table already exists
I am trying to get started with South.
I had an existing database.
I added South (syncdb, schemamigration --initial).
I updated models.py to add a field.
I ran ./manage.py schemamigration myapp ...
16
votes
1answer
2k views
Currently using Django “Evolution”, is “South” better and worth switching?
I'm currently using Django evolutions to manage my product's database evolutions. It's not perfect but I've learned to live with its flaws. For instance, I always have to copy my production database ...
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 ...
11
votes
4answers
3k views
How come my South migrations doesn't work for Django?
First, I create my database.
create database mydb;
I add "south" to installed Apps. Then, I go to this tutorial: http://south.aeracode.org/docs/tutorial/part1.html
The tutorial tells me to do ...
9
votes
4answers
479 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 ...
9
votes
3answers
2k views
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_view_boletim", "Can view boletim"),
...
8
votes
2answers
701 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
328 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 ...
7
votes
1answer
920 views
reverse engineer mysql database to create django app
I basically want to take an existing mysql database structure created and used by a php app (codeigniter framework) and reverse engineer it to a django app. is there some tool to do this? south ...
6
votes
2answers
339 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 ...
5
votes
4answers
160 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
1answer
181 views
South ignores change in field default value in Python / Django
Why does South not recognize changes in default field values in Python models? For example, take this existing model that is migrated with south:
class MyFamily(models.Model):
family_size = ...
5
votes
3answers
321 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
1answer
451 views
Django south migration - Adding FULLTEXT indexes
I need to add a FULLTEXT index to one of my Django model's fields and understand that there is no built in functionality to do this and that such an index must be added manually in mysql (our back end ...
5
votes
1answer
167 views
Handling PosgreSQL serial field type in South
I am using a legacy database which does a couple things that make sense in a db way, but not sure how to represent them in Django so that South and Django itself can deal with them.
I have a Parts ...
5
votes
1answer
332 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 ...
4
votes
2answers
72 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
2answers
82 views
Excluding South migrations from Pylint
I'm using South for migration in my Django project. When I run Pylint on my project I get a bunch of errors from the migration files. How can I exclude migration files from Pylint?
I'm on a Windows ...
4
votes
1answer
143 views
+50
Is Django supposed to implement DB on_delete rules itself?
I have a Django 1.3 app for which I am using South 0.7.3 for DB migrations. I have a problem where an on_delete=models.SET_NULL rule doesn't seem to be firing when the parent entity is deleted, thus ...
4
votes
2answers
359 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
3answers
305 views
PyDev in Eclipse does not recognize db.add_column from South
I have just installed South (0.7.3, python-2.6) and successfully completed the tutorial using the python interpreter. Meaning that I am able to create a model and migrate it without any errors, so ...
4
votes
1answer
498 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
1answer
689 views
No Such Column Error in Django App After South Migration
I've run into the same issue presented by the commenter here: Django South - table already exists
There was no follow-up, so I thought I'd post a new question. I have a Django app whose migrations I ...
4
votes
3answers
564 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 ...
4
votes
3answers
307 views
Django migrations--is it possible to use South in the middle of the project?
I already started a project, and the models are all synced and everything.
4
votes
1answer
737 views
django and south migration with conflicts (0007_two … and 0007_one) how to solve?
Hi I want to use south in my django project as migration tool, but I have problem with using south in multiuser scenario:
two guys working in same time and create on diffrent machines two migrations ...
3
votes
2answers
54 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
154 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
1answer
163 views
should south migration files be added to source control?
I'm wondering whats the "best" way to use South with multiple developers.
Should the migration files be tracked?
The problems rise when two developers create different changes to models.py from a ...
3
votes
2answers
361 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
316 views
South django table already exists
I'm experiencing the same problem as with: django - "manage.py test" fails "table already exists"
The schemamigration / migration worked fine (although did have some problems that required me to ...
3
votes
2answers
844 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
1answer
244 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
394 views
Loading a fixture before a south migration run
I've made a mistake of creating my own User model and am trying to recover.
I've created a south migration that copies my old user models and creates django.contrib.auth.models.User models. To ensure ...
3
votes
2answers
500 views
DROP CASCADE in Sql Server
I'm running a South migration in a Django project that uses Sql Server and pyodbc. This is backwards migration so the South is trying to delete a few of my tables.
The South executes the following ...
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
1answer
109 views
Changing the encoding of a table with django+south migrations
Django and south newbie here
I need to change the encoding of a table I created, does anyone know a way to do so using a migration?
3
votes
3answers
727 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
443 views
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 primary_key. As a consequence Django use the fields and doesn't create an id automatically.
class ...
3
votes
3answers
339 views
How to ensure database changes can be easily moved over DVCS using django
Overview
I'm building a website in django. I need to allow people to begin to add flatpages, and set some settings in the admin. These changes should be definitive, since that information comes ...
2
votes
0answers
33 views
schemamigration/refactor model using south
I have model Foo which resides inside app bar. Now, I wish to move thmodel to app bar2. I am already using db_table when syncdb with bar before
meta:
db_table = 'foo_table'
Now when I do ...
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
67 views
What migration order does South follow across different apps?
I've recently begun using South for migrations in my Django project. All was going well until recently when I ran into a peculiar issue.
I have two apps in my project, say, App-A and App-B. A model ...
2
votes
2answers
190 views
django-eav and south
I'm starting a new django project and as usually i put south on my installed apps.
Then i need some kind of eav to store some fields in a model and i found an app that does exactly what i want, that ...
2
votes
2answers
184 views
In Django/South HOWTO create an instance of a model from a different app during DataMigration
I need to perform a datamigration of a model Answer in app Question. In that script there is a dependency such that I need to create an instance of a model Chapter which is in the app Journal. So, I ...
2
votes
1answer
146 views
Does South foul up the Django test runner framework?
I’ve got a Django project, to which I added the South app about halfway through to make database migrations easier.
I use the Django unit test framework in a couple of limited places in the project, ...