# Generated by Django 4.1.2 on 2025-05-06 22:12 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('erp', '0008_inboundbill_erp_audit_id_inboundbill_erp_save_id_and_more'), ('bound', '0003_boundbatchmodel_relate_material_and_more'), ] operations = [ migrations.AddField( model_name='boundlistmodel', name='relate_out_bill', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='bound_out_list', to='erp.outboundbill', verbose_name='关联出库单据'), ), ]