mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
ee28b4eea5
- This will be set to TRUE until a stock item has been completed
19 lines
393 B
Python
19 lines
393 B
Python
# Generated by Django 3.0.7 on 2020-10-04 13:12
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('stock', '0051_auto_20200928_0928'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='stockitem',
|
|
name='is_building',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|