Description
I'm in the process of switching from djcelery
to django_celery-beat
when upgrading to celery 4.x, as djcelery
is no longer supported in celery 4. Is there a recommended way to migrate all the djcelery
model data to django-celery-beat
models? It's pretty clear that the projects are related to each other by looking at the model structure and committers. Seems like the models are almost exactly the same (with some additional ones in django-celery-beat
). Yet I can't find any mention of djcelery
in the django-celery-beat
docs.
Should I simply create a data migration in django to directly copy over data from djcelery
app models to the "matching" django-celery-beat
app models? I'm happy to contribute information to the readme once I understand the guidelines of achieving this, if that will help other as well.
Thanks!