From 280f6241dd89487ae4063aafade51fa57ab4e575 Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 9 Jun 2023 10:09:02 +1000 Subject: [PATCH] Migration fix (#5006) - Ensure initial django_q migrations are applied - Why on earth is this failing now? --- InvenTree/stock/migrations/0071_auto_20211205_1733.py | 1 + 1 file changed, 1 insertion(+) diff --git a/InvenTree/stock/migrations/0071_auto_20211205_1733.py b/InvenTree/stock/migrations/0071_auto_20211205_1733.py index 6b0e83bfb1..31cc5f1cc1 100644 --- a/InvenTree/stock/migrations/0071_auto_20211205_1733.py +++ b/InvenTree/stock/migrations/0071_auto_20211205_1733.py @@ -38,6 +38,7 @@ def delete_scheduled(apps, schema_editor): class Migration(migrations.Migration): dependencies = [ + ('django_q', '0007_ormq'), ('stock', '0070_auto_20211128_0151'), ]