forked from erp-dev/erp
19 lines
458 B
Python
19 lines
458 B
Python
# Generated by Django 5.2.7 on 2025-11-10 07:52
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('basic_info', '0008_merchant_auto_complete_stock_change'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='product',
|
|
name='minimum_quantity',
|
|
field=models.IntegerField(blank=True, null=True, verbose_name='最低库存量'),
|
|
),
|
|
]
|