django-south
Deploying Django app, how to get South to work?
I am getting the following error in my error logs: TemplateSyntaxError: Caught ImportError while rendering: No module named south[详细]
2023-02-18 22:06 分类:问答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[详细]
2023-02-16 17:14 分类:问答Pesky "Table 'my_table' already exists" in Django-South
In Django-South: I changed I\'ve run the initial migration successfully for myapp but for some reason, after I\'ve made a change to my model and go to[详细]
2023-02-16 13:44 分类:问答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[详细]
2023-02-14 22:49 分类:问答Migrating Built-in Django Models When Upgrading
We\'re using an older version of Django (1.1.1) and are preparing to upgrade to the latest version (currently 1.2) soon.[详细]
2023-02-13 07:51 分类:问答Why use South during initial development?
I\'m wondering about the advantages of using (django) South during heavy initial development of a project.[详细]
2023-02-11 17:40 分类:问答Django Data Migration, using South with Inheritance
We are migrating the data in several instances of our Django project to a new schema. The old schema had:[详细]
2023-02-10 20:34 分类:问答South django table already exists
I\'m experiencing the same problem as with: django - "manage.py test" fails "table already exists"[详细]
2023-02-09 23:05 分类:问答Why don't my south migrations work?
First, I create my database. create database mydb; I add \"south\" to installed Apps.Then, I go to this tutorial:http://south.aeracode.org/docs/tutorial/part1.html[详细]
2023-02-07 23:57 分类:问答Django South - turning a null=True field into a null=False field
My question is, what is the best practice for turning a null=True field into a null=False field using Django S开发者_Python百科outh. Specifically, I\'m working with a ForeignKey.You should write first[详细]
2023-02-06 14:00 分类:问答