mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
19 lines
443 B
Python
19 lines
443 B
Python
# Generated by Django 3.0.5 on 2020-06-05 09:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('part', '0044_auto_20200605_0931'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='partcategory',
|
|
name='description',
|
|
field=models.CharField(blank=True, help_text='Description (optional)', max_length=250),
|
|
),
|
|
]
|