added migrations for objects
rebuild requirements.txt
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
# 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",
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user