From 81c03464e5fe08a09f1a8f5fac2c94a1a5d2681d Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Mon, 8 Apr 2024 21:09:51 +0200 Subject: [PATCH] add model deps --- .../InvenTree/users/migrations/0011_auto_20240119_1659.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/InvenTree/users/migrations/0011_auto_20240119_1659.py b/src/backend/InvenTree/users/migrations/0011_auto_20240119_1659.py index fe0a0a12b5..9e8d71ccd2 100644 --- a/src/backend/InvenTree/users/migrations/0011_auto_20240119_1659.py +++ b/src/backend/InvenTree/users/migrations/0011_auto_20240119_1659.py @@ -45,7 +45,7 @@ def move_mfa(apps, schema_editor): class Migration(migrations.Migration): - dependencies = [('users', '0010_alter_apitoken_key')] + dependencies = [('users', '0010_alter_apitoken_key'), ('otp_static', '0002_throttling'), ('otp_totp', '0002_auto_20190420_0723')] operations = [ migrations.RunPython(move_mfa, reverse_code=migrations.RunPython.noop)