django-south
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 ./ma开发者_Python百科nage.py syncdb or doing[详细]
2023-03-12 10:11 分类:问答Squashing multiple South migrations into one migration
During development I created many migrations, often going back and forth about how I wanted to implement something.[详细]
2023-03-11 17:34 分类:问答Efficient data migration on a large django table
I need to add a new column to a large (5m row) django table.I have a south schem开发者_开发问答amigration that creates the new column.Now I\'m writing a datamigration script to populate the new column[详细]
2023-03-11 07:26 分类:问答Django, South and the --freeze command
I\'m trying to get started with South data migrations. I found this SO question: South data migration \'instance\' error when using south freeze orm, and tried the commands listed there but it does no[详细]
2023-03-10 10:09 分类:问答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[详细]
2023-03-09 17:02 分类:问答Django, db update, south and sqliteman: a confirmation. Not really a question. Is it better?
I have seen that actually, after asking in stackoverflow.com, there might be a lot of equivalent questions.. But I got the box where to write already and my google searches[详细]
2023-03-09 01:53 分类:问答Django python help needed
I am trying to sync my DB but at time of sync it shows error to migrate my models.py containing folder on migrating it shows no fixtures found.[详细]
2023-03-08 07:08 分类:问答How do I remove south from a django project
I installed south and tried a few changes using it, which didn\'t exactly work out the way I wanted it to. Thankfully, my data is safe but locked into south. I want to r开发者_开发技巧emove south and[详细]
2023-03-08 04:04 分类:问答ManyToManyField and South migration
I have user profile model with M2M field class Account(models.Model): ... friends = models.ManyToManyField(\'self\', symmetrical=True, blank=True)[详细]
2023-03-07 13:23 分类:问答Adding a "through" table to django field and migrating with South?
Seems like this should be \"easy\" or at least documented somewhere, I just cant find it. Lets say I have a model:[详细]
2023-03-07 06:41 分类:问答