Skip to content

Commit

Permalink
Create migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
ericswpark committed Sep 4, 2023
1 parent e44e862 commit 788869f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions django_celery_results/migrations/0012_alter_taskresult_status.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 4.2.5 on 2023-09-04 14:56

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("django_celery_results", "0011_taskresult_periodic_task_name"),
]

operations = [
migrations.AlterField(
model_name="taskresult",
name="status",
field=models.CharField(
default="PENDING",
help_text="Current state of the task being run",
max_length=50,
verbose_name="Task State",
),
),
]

0 comments on commit 788869f

Please sign in to comment.