django-south
PyDev in Eclipse does not recognize db.add_column from South
I have just installed South (0.7.3, python-2.6) and successfully completed the tutorial using the python interpreter.Meaning that I am able to create a model and migrate it without any errors, so Sout[详细]
2023-02-05 21:29 分类:问答Django-South introspection rule doesn't work
I\'m using Django 1.2.3 and South 0.7.3. I am trying to convert my app (named core) to use Django-South. I have a custom model/field that I\'m using, named ImageWithThumbsField. It\'s basically just[详细]
2023-02-05 07:06 分类:问答How is a rollback with South supposed to work?
Color me confused. Let\'s assume we\'ve got a Django project with South migrations. Currently, production project version is A, version in development B. Now let\'s suppose version B is installed into[详细]
2023-02-05 04:27 分类:问答ImportError: No module named modelsinspector
I get the following error when I do syncdb Traceback (most recent call last): File \"manage.py\", line 11, in <module>[详细]
2023-02-04 20:58 分类:问答What's the recommended approach to resetting migration history using Django South?
I\'ve accumulated quite a few migrations using South (0.7) and Django (1.1.2) which are st开发者_Python百科arting to consume quite a bit of time in my unit tests. I would like to reset the baseline an[详细]
2023-02-02 20:01 分类:问答Django Testing - Problems with South and MySQL
Trying to setup our systems on our django project to utilize django\'s testing framework. However, when I try running python manage.py test I get various errors explained below.[详细]
2023-02-02 09:17 分类:问答Renaming an app with Django and South
I am renaming an application to a more suitable name.In doing so, I want to ensure that South properly migrates the database (renames database tables and changes references in django_content_type or s[详细]
2023-02-01 16:56 分类:问答How do I change the choices in a Django model?
I have a Django model that uses the choices attribute. COLOR_CHOICES = ( (\'R\', \'Red\'), (\'B\', \'Blue\'),[详细]
2023-01-31 19:52 分类:问答django-south with django-audit-log
I\'m trying to do a django-south migration to an existing application to add django-audit-log to it (to track user-initiated changes of a module), but am running into significant errors.Specifically w[详细]
2023-01-31 08:37 分类:问答django south fresh install --> error: unknown command 'schemamigration'
short story I run ./manage.py schemamigration junk_app --initial on a completely fresh django project right after freshly installing South ( http://south.aeracode.org/ ), and I get the following erro[详细]
2023-01-25 15:21 分类:问答