123456789101112131415161718 |
- # Generated by Django 4.1.2 on 2025-04-24 00:33
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('bound', '0009_alter_boundbatchmodel_bound_number'),
- ]
- operations = [
- migrations.AlterField(
- model_name='boundbatchmodel',
- name='bound_number',
- field=models.CharField(max_length=255, unique=True, verbose_name='入库批次号'),
- ),
- ]
|