Manage trip additions and cancels

This commit is contained in:
2024-02-06 08:01:56 +01:00
parent 9ed97df4b5
commit 8d2ffe3014
7 changed files with 247 additions and 149 deletions

View File

@ -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",