Skip to content

Commit cfe67c7

Browse files
committed
wip
1 parent 467ba43 commit cfe67c7

File tree

2 files changed

+5
-32
lines changed

2 files changed

+5
-32
lines changed

scheduler/migrations/0019_task.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by Django 5.1.2 on 2024-10-15 22:39
1+
# Generated by Django 5.1.3 on 2024-11-19 23:36
22

33
import scheduler.models.task
44
from django.db import migrations, models
@@ -25,11 +25,11 @@ class Migration(migrations.Migration):
2525
"task_type",
2626
models.CharField(
2727
choices=[
28-
("CronTask", "Cron Task"),
29-
("RepeatableTask", "Repeatable Task"),
30-
("OnceTask", "Run once"),
28+
("CronTaskType", "Cron Task"),
29+
("RepeatableTaskType", "Repeatable Task"),
30+
("OnceTaskType", "Run once"),
3131
],
32-
default="OnceTask",
32+
default="OnceTaskType",
3333
max_length=32,
3434
verbose_name="Task type",
3535
),

scheduler/migrations/0020_alter_task_task_type.py

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

0 commit comments

Comments
 (0)