File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed
pgcommitfest/commitfest/migrations Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Generated by Django 4.2.19 on 2025-07-03 06:15
2
2
3
- from django .db import migrations
3
+ from django .db import migrations , models
4
4
5
5
6
6
class Migration (migrations .Migration ):
@@ -14,4 +14,22 @@ class Migration(migrations.Migration):
14
14
ALTER TYPE cfbottask_status ADD VALUE 'PAUSED' AFTER 'CREATED';
15
15
"""
16
16
),
17
+ migrations .AlterField (
18
+ model_name = "cfbottask" ,
19
+ name = "status" ,
20
+ field = models .TextField (
21
+ choices = [
22
+ ("CREATED" , "Created" ),
23
+ ("PAUSED" , "Paused" ),
24
+ ("NEEDS_APPROVAL" , "Needs Approval" ),
25
+ ("TRIGGERED" , "Triggered" ),
26
+ ("EXECUTING" , "Executing" ),
27
+ ("FAILED" , "Failed" ),
28
+ ("COMPLETED" , "Completed" ),
29
+ ("SCHEDULED" , "Scheduled" ),
30
+ ("ABORTED" , "Aborted" ),
31
+ ("ERRORED" , "Errored" ),
32
+ ]
33
+ ),
34
+ ),
17
35
]
You can’t perform that action at this time.
0 commit comments