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

Made company description optional

This commit is contained in:
eeintech
2021-04-08 13:24:17 -04:00
parent 0bb2507dd6
commit f8d1ee8805
3 changed files with 21 additions and 1 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 3.0.7 on 2021-04-08 17:18
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('company', '0034_supplierpart_update'),
]
operations = [
migrations.AlterField(
model_name='company',
name='description',
field=models.CharField(blank=True, help_text='Description of the company', max_length=500, verbose_name='Company description'),
),
]