Manage trip additions and cancels
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
# Generated by Django 5.0.1 on 2024-02-04 19:58
|
||||
# Generated by Django 5.0.1 on 2024-02-06 06:59
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
@ -35,9 +35,12 @@ class Migration(migrations.Migration):
|
||||
models.IntegerField(
|
||||
choices=[
|
||||
(0, "Scheduled"),
|
||||
(1, "Skipped"),
|
||||
(2, "No data"),
|
||||
(3, "Unscheduled"),
|
||||
(1, "Added"),
|
||||
(2, "Unscheduled"),
|
||||
(3, "Canceled"),
|
||||
(5, "Replacement"),
|
||||
(6, "Duplicated"),
|
||||
(7, "Deleted"),
|
||||
],
|
||||
default=0,
|
||||
verbose_name="Schedule relationship",
|
||||
|
Reference in New Issue
Block a user