2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-02 11:40:58 +00:00

Remove defunct 'build_order' field from StockItem model

- This is now handled by the new-and-improved build system, no longer required
This commit is contained in:
Oliver Walters
2020-11-10 20:12:39 +11:00
parent 978fd7c683
commit e4f2eecb3b
10 changed files with 58 additions and 34 deletions

View File

@ -0,0 +1,17 @@
# Generated by Django 3.0.7 on 2020-11-10 09:11
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('stock', '0053_auto_20201110_0513'),
]
operations = [
migrations.RemoveField(
model_name='stockitem',
name='build_order',
),
]