mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
094a0fe709
- Filter by is_manufacturer
- Better table display
(cherry picked from commit f427ee4754
)
19 lines
455 B
Python
19 lines
455 B
Python
# Generated by Django 2.2.10 on 2020-04-12 23:30
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('company', '0015_company_is_manufacturer'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='company',
|
|
name='is_manufacturer',
|
|
field=models.BooleanField(default=False, help_text='Does this company manufacture parts?'),
|
|
),
|
|
]
|