1
0
forked from erp-dev/erp

feat: change segment_size to decimal in Product model

This commit is contained in:
2025-12-27 14:48:24 +08:00
parent 69c3daa919
commit ce0cf3256c
8 changed files with 48 additions and 426 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.2.8 on 2025-12-27 06:16
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('basic_info', '0022_product_pieces_product_segment_size'),
]
operations = [
migrations.AlterField(
model_name='product',
name='segment_size',
field=models.DecimalField(blank=True, decimal_places=2, max_digits=8, null=True, verbose_name='一段尺寸'),
),
]