Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 5.2.11 on 2026-02-13 20:10

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('dojo', '0259_locations'),
]

operations = [
migrations.AlterField(
model_name='engagement',
name='status',
field=models.CharField(choices=[('Not Started', 'Not Started'), ('Blocked', 'Blocked'), ('Cancelled', 'Cancelled'), ('Completed', 'Completed'), ('In Progress', 'In Progress'), ('On Hold', 'On Hold'), ('Scheduled', 'Scheduled'), ('Waiting for Resource', 'Waiting for Resource')], default='Not Started', max_length=2000, null=True),
),
migrations.AlterField(
model_name='engagementevent',
name='status',
field=models.CharField(choices=[('Not Started', 'Not Started'), ('Blocked', 'Blocked'), ('Cancelled', 'Cancelled'), ('Completed', 'Completed'), ('In Progress', 'In Progress'), ('On Hold', 'On Hold'), ('Scheduled', 'Scheduled'), ('Waiting for Resource', 'Waiting for Resource')], default='Not Started', max_length=2000, null=True),
),
]
2 changes: 1 addition & 1 deletion dojo/db_migrations/max_migration.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0259_locations
0260_alter_engagement_status_alter_engagementevent_status
1 change: 1 addition & 0 deletions dojo/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1510,6 +1510,7 @@ def __str__(self):
("Completed", "Completed"),
("In Progress", "In Progress"),
("On Hold", "On Hold"),
("Scheduled", "Scheduled"),
("Waiting for Resource", "Waiting for Resource"))


Expand Down