Tagged Questions

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 ...
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 ...
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
1answer
315 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 ...
2
votes
2answers
210 views

ManyToManyField and South migration

I have user profile model with M2M field class Account(models.Model): ... friends = models.ManyToManyField('self', symmetrical=True, blank=True) ... Now I need to know HOW and WHEN add ...
2
votes
1answer
800 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 ...
2
votes
1answer
317 views

How do I migrate data from one model to another using South in Django?

I created a Django app that had its own internal voting system and a model called Vote to track it. I want to refactor the voting system into its own app so I can reuse it. However, the original app ...
1
vote
1answer
21 views

Adding Autoincrement field to existing model with Django South?

I have a Django project that started as an import of a legacy database. Because of this, there is a model with a composite primary key. This worked as long as I used only the legacy data, but now I ...
1
vote
1answer
96 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
54 views

Running South migrations for all apps

I've just begun using South and am still in the process of figuring it out. Let's say I have the initial migration script of a model. Then i go add a column to the model and create a migration script ...
1
vote
3answers
287 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
196 views

South does not recognize models when it is a package

I use South for schema and data migraton for my Django site. I'm happy about using it. One day I converted models.py file to models/__init__py and put some additional models at models/something.py. ...
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 ...
0
votes
1answer
43 views

django model default value

a noob question here. I changed my model field from sale_rent = models.IntegerField(choices=sale_rent) to sale_rent = models.IntegerField(choices=sale_rent, default=-1) After that I ran ...
0
votes
1answer
37 views

south with mysql, yes or no?

Following the south tutorial, The basics, i'm already having problems! This is due to Mysql not supporting migrations i think, but neither MYSQL documentation or South documentation or previous stack ...
0
votes
0answers
28 views

Using South to modify the `django.contrib.sites.models.Site`

I want to add a field to django.contrib.sites.models.Site, using this snippet, but adding a ForeingKey to a model not under my control. The code is put in the __init__.py module of my app. And that ...
0
votes
0answers
39 views

What's the best way to do large migrations in a django app?

Now that our database is large sometimes migrations(using south) can take up to 30 minutes and this this his happening the table/database is locked causing the site to go down. Is there another way I ...
0
votes
2answers
40 views

Problem migrating DB schema after I deleted a table

I had to change a field in my model from date to integer. Schemamigration could not do this so i had to delete the table (there was no data so it didn't matter). After i made the change I tried to ...
0
votes
1answer
80 views

In South, can I copy the value of an old column to a new one?

One of my Django models is a subclass and I want to change its superclass to one that is very similar to the original one. In particular, the new superclass describes the same object and has the same ...
0
votes
1answer
86 views

Django Boolean is “True” after migration and not selected in ModelForm

I am trying to add a row to my Model and have that option editable in a ModelForm in Django. I want the field to be True by default. Here's what I'm adding to my model: field_name = ...
0
votes
1answer
174 views

Trouble writing a “Forwards” for Data Migration in South

So after spending the better part of my day off trying to wrap my head around data and schema migrations in South, I feel like I'm getting close -- but I'm having some trouble with my datamigration ...
0
votes
1answer
427 views

Django South - db.alter function removing null=true blank=true fails with mysql

Having trouble with the db.alter command when changing a date field from null=True and blank=True to required by removing these two values. When the below line is commented out, the migration runs ...
0
votes
1answer
136 views

How do I add a new model and generate the migrations with South 0.7.2?

I created a new model: class RssFeed(models.Model): url = mdels.CharField(max_length=300) $ python manage.py schemamigration forum --add-model RssFeed Traceback (most recent call last): ...
0
votes
2answers
183 views

Is having everything in Django models sensible?

I've just inherited a Django project for maintenance and continuous development. While I'm a fairly proficient programmer (also Python) I have next to no experience with Django, therefore I need a bit ...
0
votes
3answers
120 views

How to add an Admin class to a model after syncdb?

I added some models in my models.py and I want to add an admin class to use a wysiwyg-editor in text-fields. Well, I know that Django itself doesn't support migrations and I've used South, but it ...