django-south
Problems with South/Django: not recognizing the Django App
I\'ve got a Django project on my machine and when I try to use South to migrate the data schema, I get several odd errors. Example:[详细]
2022-12-27 03:02 分类:问答Django South Foreign Keys referring to pks with Custom Fields
I\'m working with a legacy database which uses the MySQL big int so I setup a simple custom model field to handle this:[详细]
2022-12-23 12:30 分类:问答Django 1.2 and south problem
I was using python 2.5 and django 1.0.2. But I moved to python 2.6 and django 1.2 recently and I\'m getting the following error now during the migrate:[详细]
2022-12-22 17:39 分类:问答How to add an Admin class to a model after syncdb?
I added some models in my models.py and I want to add an admin class to use a wysiwyg-editor in text-fields.[详细]
2022-12-21 14:42 分类:问答Django South data migration is running twice
I have a migration: ... def forwards(self, orm): for p in products.models.Product.objects.all(): new = cart.models.Product(title =开发者_运维问答 p.title)[详细]
2022-12-21 13:41 分类:问答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 o开发者_StackOverflow中文版f this app has some classes with an explicit primary_key. As a consequence Django use the fields and doesn\'t create a[详细]
2022-12-16 01:23 分类:问答What does "Migrating a Django application" mean?
I kept thinking a lot about the meaning of migrating a Django app开发者_开发百科 the last few days and heard about migrating Django apps with django-south. Maybe it\'s just the lack of sufficient Engl[详细]
2022-12-15 03:29 分类:问答south. migrate entire database
how can i migrate entiry db at one开发者_开发百科 step? south`s startmigration command can work only with single applicationIf you want to create a migration, manage.py startmigration is deprecated (s[详细]
2022-12-14 03:12 分类:问答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 is[详细]
2022-12-13 20:42 分类:问答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 from th[详细]
2022-12-09 15:50 分类:问答