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:
I\'m working with a legacy database which uses the MySQL big int so I setup a simple custom model field to handle this:
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:
I added some models in my models.py and I want to add an admin class to use a wysiwyg-editor in text-fields.
I have a migration: ... def forwards(self, orm): for p in products.models.Product.objects.all(): new = cart.models.Product(title =开发者_运维问答 p.title)
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
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
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
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
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