mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-09 16:58:49 +00:00
- ForeignKey link to Company model (cherry picked from commit acebe61ac597d3d6ca33ec60b7dfea9da39f8975)
19 lines
448 B
Python
19 lines
448 B
Python
# 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=False, help_text='Does this company manufacture parts?'),
|
|
),
|
|
]
|