mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
19 lines
451 B
Python
19 lines
451 B
Python
# Generated by Django 2.2.5 on 2019-11-18 23:16
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('part', '0024_auto_20191118_2139'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='part',
|
|
name='units',
|
|
field=models.CharField(blank=True, default='', help_text='Stock keeping units for this part', max_length=20),
|
|
),
|
|
]
|