2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-15 11:35:41 +00:00

Fix data migration (#6652)

- Force part.0109 to be non-atomic
- Ref: https://github.com/inventree/InvenTree/discussions/6641
This commit is contained in:
Oliver
2024-03-07 08:40:36 +11:00
committed by GitHub
parent 0f89e21611
commit c48669cf8f

View File

@ -138,6 +138,8 @@ def update_parameter_values(apps, schema_editor):
class Migration(migrations.Migration): class Migration(migrations.Migration):
atomic = False
dependencies = [ dependencies = [
('part', '0108_auto_20230516_1334'), ('part', '0108_auto_20230516_1334'),
] ]