Tagged Questions

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 ...
3
votes
2answers
442 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 ...
2
votes
2answers
183 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
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
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
116 views

South data migration from parent class to subclass clobbers parent data

I have a legacy Django model which is a little to specific in its implementation for my tastes. I want to generate more specific subclasses of this model to handle differing scenarios, but want to ...
1
vote
2answers
280 views

South doesn't create default permissions on new models in time for latter migrations to use them

I'm not 100% sure I'm doing this right, but I think I've found an issue where auth.Permission objects aren't being created soon enough for migrations to use them when you initialize a DB from scratch. ...