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.
27 lines
644 B
Python
27 lines
644 B
Python
# Generated by Django 5.2.3 on 2025-07-01 09:08
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("booking", "0003_booking_container_expedited_count"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="booking",
|
|
name="status",
|
|
field=models.CharField(
|
|
choices=[
|
|
("active", "Active"),
|
|
("finished", "Finished"),
|
|
("canceled", "Canceled"),
|
|
],
|
|
default="active",
|
|
max_length=10,
|
|
),
|
|
),
|
|
]
|