12345678910111213141516171819 |
- # Generated by Django 4.1.2 on 2025-05-20 02:28
- from django.db import migrations, models
- import django.db.models.deletion
- class Migration(migrations.Migration):
- dependencies = [
- ('bound', '0017_outbounddemandmodel_out_type'),
- ]
- operations = [
- migrations.AddField(
- model_name='outbatchmodel',
- name='bound_list',
- 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'),
- ),
- ]
|