dasaproject/django/Item/migrations/0003_alter_uom_number_of.py
2023-09-27 15:49:36 +07:00

19 lines
435 B
Python

# Generated by Django 4.2 on 2023-05-03 13:13
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('Item', '0002_alter_item_parentreffullname'),
]
operations = [
migrations.AlterField(
model_name='uom',
name='Number_of',
field=models.DecimalField(blank=True, decimal_places=3, max_digits=12, null=True),
),
]