2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-04 20:51:00 +00:00

Add "is_manufacturer" field to company model

(cherry picked from commit fd45db9e22)
This commit is contained in:
Oliver Walters
2020-04-13 09:21:59 +10:00
parent a921b3fcee
commit 906ed7f64d
3 changed files with 29 additions and 2 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 2.2.10 on 2020-04-12 23:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('company', '0014_auto_20200407_0116'),
]
operations = [
migrations.AddField(
model_name='company',
name='is_manufacturer',
field=models.BooleanField(default=True, help_text='Does this company manufacture parts?'),
),
]