Tagged Questions

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
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 ...
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 ...
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
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
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
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
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
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 ...
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
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
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
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
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 ...
2
votes
0answers
35 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
1answer
261 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
93 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
2answers
156 views

Why does South decide to delete this m2m table?

I want to add a column to an existing model, and after running "schemamigration --auto" the resulting migration tries to delete another table! Why would it do that? my models (simplified) - class ...
2
votes
1answer
209 views

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 and I want to make sure South is setup so I can easily update the database in the ...
2
votes
1answer
810 views

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 without losing any of the data in that column. My original plan was to simply change the ...
1
vote
1answer
32 views

Is it possible to use South without recording the migrations?

Let's say, I start with an app: class MyModel(models.Model): f = models.CharField(...) This structure is recorded in migrations/0001_initial.py. I add 2 fields: g = ...
1
vote
1answer
52 views

How to specify a default value for Django's TextField in South?

I added a TextField to a model whose corresponding table had already been created in the database. As I ran South, I got the following message: Since you are adding this field, you MUST specify a ...
1
vote
1answer
59 views

Add initial data to the database

When applying a recent migration to my app, I encountered the following message in the output: - Loading initial data for myapp I had a bit of a Eureka moment. It seems like it's possible to have ...
1
vote
1answer
57 views

Migrate data from one Model to another with Django South

I currently have a structure that needs to be rewritten in order to cope with Django-CMS Currently the setup is as follows class Video(models.Model): #embed_code_or_url = ...
1
vote
1answer
102 views

Django South migration fails

I am trying to map some data onto a staging server and have run into an issue. When running my migrations I get the following error. django.db.utils.DatabaseError: column "item_name_id" cannot be ...
1
vote
2answers
81 views

South won't generate or apply migrations for existing app, with changes to migrate

I'm using South to generate and apply migrations, rather than managing that myself. Unfortunately, South is refusing to actually do anything. Transcript below: ...
1
vote
1answer
77 views

Django South ignoring my custom rules

I am using a custom Django model field to and widget to render a GoogleMap widget in my admin, i also want to use South with my project to handle database migrations. However after much effort i am ...
1
vote
1answer
98 views

South: run a migration for a column that is both unique and not null

Using South/Django, I am running into a problem where I'm trying to add a UNIQUE and NOT NULL column for a model with existing rows in the database. South prompts me to specify a default for the ...
1
vote
1answer
114 views

Should I keep my South migrations in version control?

I'm not sure if I should keep them around or not. The main reason I'm using south at the moment is to ease development changes to the model, though I suppose it will come in handy when I'm in ...
1
vote
1answer
159 views

Do I need to call syncdb before or after South migrate

I'm new to South so I am wondering if I ever need to call ./manage.py syncdb or doing ./manage.py schemamigration appname --auto ./manage.py migrate appname is sufficient in all cases South can ...
1
vote
1answer
421 views

How should I be setting SOUTH_DATABASE_ADAPTERS for my Django app that uses South?

I've extended the mysql backend that comes with Django and it works just great... until I try to use South with my app. Every time I try a schemamigration South tells me "There is no South database ...
1
vote
3answers
999 views

“No fixtures found” during syncdb/schemamigration with initial_data.yaml [Django 1.3]

I have a few apps set up, to one of which I just added a fixture. I created an "initial_data.yaml" file in a subdirectory "fixtures" under the app folder, so the full path is ...
1
vote
1answer
56 views

Question Regarding Django's South and the Migration of Data

I'm just starting with South and one question that I have is not answered in what I have read so far. Here is the thing: what about the data? Does South makes a dump of all data into a fixture, ...
1
vote
3answers
289 views

ImportError: No module named modelsinspector

I get the following error when I do syncdb Traceback (most recent call last): File "manage.py", line 11, in <module> execute_manager(settings) File ...
1
vote
1answer
165 views

South's syncdb/migrate creates pages of output?

I'm working a small, personal Django project and I've added South (latest mercurial as of 10/9/10) to my project. However, whenever I run "./manage.py syncdb" or "./manage.py migrate " I get about 13 ...
1
vote
2answers
704 views

Configuring django south with PostgreSQL

I can't get my site running with south. I've successfully installed south, and I can 'import south' successfully. ./manage.py shell >>> import south >>> However, once I add ...
1
vote
3answers
588 views

Django 1.2 + South 0.7 + django-annoying's AutoOneToOneField leads to TypeError: 'LegacyConnection' object is not iterable

I'm using Django 1.2 trunk with South 0.7 and an AutoOneToOneField copied from django-annoying. South complained that the field does not have rules defined and the new version of South no longer has ...
1
vote
1answer
207 views

Problems with South/Django: not recognizing the Django App

I've got a Django project on my machine and when I try to use South to migrate the data schema, I get several odd errors. Example: $ python manage.py convert_to_south thisLocator ...
1
vote
1answer
547 views

Django South Foreign Keys referring to pks with Custom Fields

I'm working with a legacy database which uses the MySQL big int so I setup a simple custom model field to handle this: class BigAutoField(models.AutoField): def get_internal_type(self): ...
0
votes
0answers
37 views

How to upgrade a Pre-South Django App to its Post-South version

What if I used an app that didn't use South migration in let's say version 0.4 and wanted to upgrade it to the latest version of let's say 0.6 which has included a migration directory that has ...
0
votes
1answer
20 views

How do I specify slugifying code in this South migration?

I have a model like: class Thing(models.Model): title = models.CharField(_('Title'), max_length=255) I want to add this NOT NULL field: slug = models.SlugField(_('Slug'), max_length=255) ...
0
votes
1answer
53 views

South: Why the “column <colname> contains null values” error when a valid one-off default value has been provided

Originally, the model attribute location for Item class was defined like the following: location = models.ForeignKey('Location', related_name='+', null=True, on_delete=models.SET_NULL) It then got ...

1 2