You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
depot_django/containers/migrations/0003_alter_container_bookin...

27 lines
705 B
Python

# Generated by Django 5.2.3 on 2025-06-28 08:36
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("booking", "0001_initial"),
("containers", "0002_rename_receive_vehicles_container_receive_vehicle"),
]
operations = [
migrations.AlterField(
model_name="container",
name="booking",
field=models.ForeignKey(
blank=True,
null=True,
on_delete=django.db.models.deletion.CASCADE,
related_name="container_bookings",
to="booking.bookingmodel",
),
),
]