We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When dumping data in django (manage.py dumpdata) an error will occur:
CommandError: Unable to serialize database: (1146, "Table 'xxx.django_rq_queue' doesn't exist")
This is because the django-rq has a model with managed = False, this will make Django think the table does exists, but was not created by itself.
managed = False
For now ignoring the django_rq app during dumpdata will work: ./manage.py dumpdata -e django_rq
./manage.py dumpdata -e django_rq
Relevant other issues: #552
The text was updated successfully, but these errors were encountered:
I'd welcome a PR to fix this issue :)
Sorry, something went wrong.
No branches or pull requests
When dumping data in django (manage.py dumpdata) an error will occur:
This is because the django-rq has a model with
managed = False
, this will make Django think the table does exists, but was not created by itself.For now ignoring the django_rq app during dumpdata will work:
./manage.py dumpdata -e django_rq
Relevant other issues: #552
The text was updated successfully, but these errors were encountered: