celery / django-celery-results

Celery result back end with django

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Migrations Getting Failed with New Version

thesaadmirza opened this issue · comments

Hi,

Migrations are getting failed after installing the latest version

Here is my configs

Django==4.1
celery==5.2.7
django-celery-results==2.4.0

Error : django.db.utils.OperationalError: error in index django_celery_results_taskresult_hidden_cd77412f after drop column: no such column: hidden

might need a new release soon. can you check the commit log please?

yes, i did

the migration 0007_remove_taskresult_hidden.py is causing the problem.
It is trying to remove the hidden column which does not exist.

If i comment the operation for removing hidden folder, the migration works.

@orf can you verify this please?