Error: no such table: django_apscheduler_djangojob
See original GitHub issueIn a project that has used django_apscheduler, executing python manage.py migrate
will report this error:
django.db.utils.OperationalError: no such table: django_apscheduler_djangojob
The reason is because the code already references the timing task of django_apscheduler, how can I solve this? thanks~
Issue Analytics
- State:
- Created 3 years ago
- Comments:9 (4 by maintainers)
Top Results From Across the Web
python - "no such table" exception - Stack Overflow
To fix this error just change "django.contrib.admin" in INSTALLED_APPS to "django.contrib.admin.apps.SimpleAdminConfig" , it will prevent " ...
Read more >error - no such table - Using Django
I'm trying to make an e-mail authorization and get an error when creating superuser. What's wrong? application 'www' models.py from ...
Read more >django-apscheduler - PyPI
This is a Django app that adds a lightweight wrapper around APScheduler. It enables storing persistent jobs in the database using Django's ORM....
Read more >django_apscheduler.models.DjangoJobExecution ... - GitHub
Looking at the job executions table it looks like some of them end up in the 'started executing' state and are never marked...
Read more >python manage.py test: django.db.utils.OperationalError: no ...
utils.OperationalError: no such table: accounts_user . I have the User model within the accounts app and the accounts app has been added to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@jcass77
I know why:
remove that :
scheduler.start()
, runpython manage.py migrate
is ok, so way?I try to:
Still no good, so way error? thanks~
Ensure you have ⬇️ ⬇️ ⬇️ ⬇️ on your
settings.py