0
votes
1answer
33 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 …
0
votes
3answers
53 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 …
1
vote
3answers
164 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 …
2
votes
1answer
187 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 …
4
votes
1answer
96 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 …
0
votes
1answer
83 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 …
0
votes
2answers
93 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 …
