According to django-celery's documentation, if I have South I should call
python manage.py migrate djcelery
However, all it does is creating some migration file:
Running migrations for djcelery:
- Migrating forwards to 0001_initial
> djcelery:0001_initial
- Loading initial data for djcelery.
No fixtures found.
It does not create the following tables like it should be doing. I did syncdb after removing south from INSTALLED_APPS:
Creating table djcelery_intervalschedule
Creating table djcelery_crontabschedule
Creating table djcelery_periodictasks
Creating table djcelery_periodictask
Creating table djcelery_workerstate
Creating table djcelery_taskstate
However, when south is present, these tables are not created with
python manage.py syncdb
Weird thing is, somehow yesterday I was able to get those tables with syncdb, but I honestly don't know what I did to make it work and could not reproduce it. This happens on both Windows 7 and Ubuntu 11.10
I am wondering if I am doing it wrong. Any input will be appreciated!