0006_boundbatchmodel_sourced_number.py 466 B

123456789101112131415161718
  1. # Generated by Django 4.1.2 on 2025-05-07 18:00
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('bound', '0005_outbatchmodel_relate_material'),
  6. ]
  7. operations = [
  8. migrations.AddField(
  9. model_name='boundbatchmodel',
  10. name='sourced_number',
  11. field=models.CharField(blank=True, max_length=255, null=True, verbose_name='来源批次号'),
  12. ),
  13. ]