mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-02 13:28:49 +00:00
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
# Generated by Django 2.2 on 2019-05-08 13:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('company', '0005_contact'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='company',
|
|
name='contact',
|
|
field=models.CharField(blank=True, help_text='Point of contact', max_length=100),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='company',
|
|
name='description',
|
|
field=models.CharField(help_text='Description of the company', max_length=500),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='company',
|
|
name='email',
|
|
field=models.EmailField(blank=True, help_text='Contact email address', max_length=254),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='company',
|
|
name='is_customer',
|
|
field=models.BooleanField(default=False, help_text='Do you sell items to this company?'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='company',
|
|
name='is_supplier',
|
|
field=models.BooleanField(default=True, help_text='Do you purchase items from this company?'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='company',
|
|
name='phone',
|
|
field=models.CharField(blank=True, help_text='Contact phone number', max_length=50),
|
|
),
|
|
]
|