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