mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
23 lines
417 B
Python
23 lines
417 B
Python
|
# Generated by Django 2.2.5 on 2019-09-08 04:05
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
from stock import models
|
||
|
|
||
|
|
||
|
def update_tree(apps, schema_editor):
|
||
|
# Update the StockLocation MPTT model
|
||
|
|
||
|
models.StockLocation.objects.rebuild()
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('stock', '0011_auto_20190908_0404'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RunPython(update_tree)
|
||
|
]
|