2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 20:45:44 +00:00

add model deps

This commit is contained in:
Matthias Mair
2024-04-08 21:09:51 +02:00
parent e7b7d03d14
commit 81c03464e5

View File

@ -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)