You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
-9
Original file line number
Diff line number
Diff line change
@@ -27,15 +27,6 @@ Add `django_dbq` to your installed apps
27
27
28
28
### Upgrading from 1.x to 2.x
29
29
30
-
This library underwent significant changes in its 2.x release, which meant migrating automatically was not practical. Before upgrading, you should open a database shell and run the following commands. Note that this will **delete all your existing jobs**, so you should ensure all jobs are completed before proceeding, and make sure you don't need any data at all from the jobs table.
31
-
32
-
```
33
-
DROP TABLE django_dbq_job;
34
-
DELETE FROM django_migrations WHERE app='django_dbq';
35
-
```
36
-
37
-
Then, run `python manage.py migrate` to recreate the jobs table.
38
-
39
30
Note that version 2.x only supports Django 3.1 or newer. If you need support for Django 2.2, please stick with the latest 1.x release.
0 commit comments