mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
21 lines
552 B
Python
21 lines
552 B
Python
# Generated by Django 2.2.5 on 2019-09-08 09:18
|
|
|
|
from django.db import migrations
|
|
import django.db.models.deletion
|
|
import mptt.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('stock', '0013_auto_20190908_0916'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='stocklocation',
|
|
name='parent',
|
|
field=mptt.fields.TreeForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='children', to='stock.StockLocation'),
|
|
),
|
|
]
|