0018_outbatchmodel_bound_list.py 575 B

12345678910111213141516171819
  1. # Generated by Django 4.1.2 on 2025-05-20 02:28
  2. from django.db import migrations, models
  3. import django.db.models.deletion
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('bound', '0017_outbounddemandmodel_out_type'),
  7. ]
  8. operations = [
  9. migrations.AddField(
  10. model_name='outbatchmodel',
  11. name='bound_list',
  12. field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='out_batch_list', to='bound.boundlistmodel', verbose_name='Bound List'),
  13. ),
  14. ]