2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-03 20:20:58 +00:00
Files
InvenTree/InvenTree/stock/migrations/0091_alter_stockitem_delete_on_deplete.py
2022-12-25 07:13:53 +11:00

20 lines
554 B
Python

# Generated by Django 3.2.16 on 2022-12-24 12:29
from django.db import migrations, models
import stock.models
class Migration(migrations.Migration):
dependencies = [
('stock', '0090_stocklocation_structural'),
]
operations = [
migrations.AlterField(
model_name='stockitem',
name='delete_on_deplete',
field=models.BooleanField(default=stock.models.default_delete_on_deplete, help_text='Delete this Stock Item when stock is depleted', verbose_name='Delete on deplete'),
),
]