django-south
Problem installing South on existing database. MySql doesn't support 'schema-altering statements'
I have a django project with an existing db that I would really like to avoid dumping or interrupting. I am attempting to install South but when I run my initial migration python manage.py migrate exa[详细]
2023-03-20 08:00 分类:问答Deploying Django App stack that's been developed using South?
So, I\'ve my application stack and I\'m ready to deploy it to my webserver. I\'m deploying to a fresh, clean and bla开发者_运维技巧nk database, so what command to I run?Do I run ./manage.py syncdb or[详细]
2023-03-19 20:41 分类:问答How to automate south migrations in an install script
I have a Django project using South that includes an install script. What I\'d like to do is have a couple of lines of code in that install script that take care of installing and syncing my database[详细]
2023-03-19 08:42 分类:问答Django South: Migrating FK from another table
I was doing some system and my table design was like this: Table A: - ID - ForeignKey(C) Table B: - ID - ForeignKey(A)[详细]
2023-03-19 02:30 分类:问答Can i revert back to syncdb after installing SOUTH
I installed SOUTH and migrated 开发者_C百科few apps. now i want to go back to syncDB and uninstall SOUTH.[详细]
2023-03-17 21:39 分类:问答Using South to convert ForeignKey TO ManyToManyField not working out
I am using South to change a ForeignKey TO ManyToManyField in one of the models in Django but it is not working out as expected.[详细]
2023-03-16 11:39 分类:问答Is there a way to use south for migration , and not lose data?
I used South as the migration tool, but i dint know开发者_如何学C it will format all my db ! I dont want to lose my db . It doesn\'t have to format your data, you can integrate existing apps/tables:[详细]
2023-03-14 17:56 分类:问答In a schemamigration, what should be the default value for a null=False field which I'm sure that won't have null values?
I want to add a ForeignKey field to my model. In order to achieve that, I did 3 steps: Added the ForeignKey field with null=True to my model, and then created a schemamigration.[详细]
2023-03-14 12:26 分类:问答Django South problem in Aptana
I try to add South migration tool to my Django app. I installed South by running python setup.py install and it is installed successfully. Now I can run migrate appname and schemamigration appname --a[详细]
2023-03-13 13:53 分类:问答Workflow for Using Django South with Multiple Code Branches
I\'m curious as to how other Django devs manage their database migrations with South when developing with multiple code branches. Let me give a sample scenario.[详细]
2023-03-12 21:48 分类:问答