mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-18 04:55:44 +00:00
mrege migrations
This commit is contained in:
@ -1,18 +0,0 @@
|
|||||||
# Generated by Django 3.2.23 on 2024-01-19 16:59
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
dependencies = [
|
|
||||||
('users', '0010_alter_apitoken_key'),
|
|
||||||
('otp_static', '0002_throttling'),
|
|
||||||
('otp_totp', '0002_auto_20190420_0723'),
|
|
||||||
('mfa', '0002_authenticator_timestamps'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RunPython(
|
|
||||||
migrations.RunPython.noop, reverse_code=migrations.RunPython.noop
|
|
||||||
)
|
|
||||||
]
|
|
@ -38,7 +38,10 @@ def move_mfa(apps, schema_editor):
|
|||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
dependencies = [('users', '0011_auto_20240119_1659')]
|
dependencies = [('users', '0011_auto_20240523_1640'),
|
||||||
|
('otp_static', '0002_throttling'),
|
||||||
|
('otp_totp', '0002_auto_20190420_0723'),
|
||||||
|
('mfa', '0002_authenticator_timestamps'),]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
migrations.RunPython(move_mfa, reverse_code=migrations.RunPython.noop)
|
migrations.RunPython(move_mfa, reverse_code=migrations.RunPython.noop)
|
||||||
|
Reference in New Issue
Block a user