mirror of
https://github.com/inventree/InvenTree.git
synced 2025-07-02 11:40:58 +00:00
Add "packaging" field for StockItem
This commit is contained in:
18
InvenTree/stock/migrations/0058_stockitem_packaging.py
Normal file
18
InvenTree/stock/migrations/0058_stockitem_packaging.py
Normal file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.0.7 on 2021-02-19 00:04
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('stock', '0057_stock_location_item_owner'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='stockitem',
|
||||
name='packaging',
|
||||
field=models.CharField(blank=True, help_text='Packaging this stock item is stored in', max_length=50, null=True, verbose_name='Packaging'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user