Fix migration order (#5027)

- Ensure stock.0094 runs before company.0059
- Ref https://github.com/inventree/InvenTree/pull/4984
- Ideally addresses historical migration issues
This commit is contained in:
Oliver 2023-06-13 07:34:41 +10:00 committed by GitHub
parent 8ca02cb105
commit 89ad8312ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,7 @@ import InvenTree.fields
class Migration(migrations.Migration):
dependencies = [
('stock', '0094_auto_20230220_0025'),
('company', '0058_auto_20230515_0004'),
]