Skip to content

Commit 797f11a

Browse files
Squash team attendance event migrations
Co-authored-by: Jake Howard <[email protected]>
1 parent e0a0f56 commit 797f11a

File tree

2 files changed

+10
-35
lines changed

2 files changed

+10
-35
lines changed

helpdesk/teams/migrations/0005_alter_team_options_teamattendanceevent.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by Django 4.2.11 on 2024-12-24 18:40
1+
# Generated by Django 4.2.11 on 2025-03-22 16:10
22

33
import django.db.models.deletion
44
from django.conf import settings
@@ -23,11 +23,17 @@ class Migration(migrations.Migration):
2323
(
2424
"type",
2525
models.TextField(
26-
choices=[("AR", "Arrived"), ("LE", "Left"), ("DE", "Delayed"), ("DO", "Dropped Out")],
27-
max_length=2,
26+
choices=[
27+
("ARRIVED", "Arrived"),
28+
("LEFT", "Left"),
29+
("DELAYED", "Delayed"),
30+
("DROPPED_OUT", "Dropped Out"),
31+
("UNKNOWN", "Unknown"),
32+
],
33+
max_length=11,
2834
),
2935
),
30-
("comment", models.TextField()),
36+
("comment", models.TextField(blank=True)),
3137
("created_at", models.DateTimeField(auto_now_add=True)),
3238
(
3339
"team",

helpdesk/teams/migrations/0006_alter_teamattendanceevent_comment_and_more.py

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)