Tivix / django-cron

Write cron business logic as a Python class and let this app do the rest! It enables Django projects to schedule cron tasks, tracks their success / failures, manages contention (via a cache) etc. Basically takes care of all the boring work for you :-)
www.tivix.com
MIT License
900 stars 193 forks source link

Error saving cronjob log message #124

Closed parker45 closed 7 years ago

parker45 commented 7 years ago

I am getting the following error:

"Error saving cronjob log message: relation "django_cron_cronjoblog" does not exist LINE 1: INSERT INTO "django_cron_cronjoblog" ("code", "start_time", ..."

after running manage.py runcrons --forced I cant seem to find out what is causing the error.

maxim-kht commented 7 years ago

Hi @parker45 did you run the migration command after including the app? python manage.py migrate django_cron

parker45 commented 7 years ago

That did it for me thanks!!