Skip to content

Commit

Permalink
Create migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
ericswpark committed Jun 19, 2024
1 parent 5919aeb commit 5b852d6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions django_celery_results/migrations/0013_alter_taskresult_status.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 5.0.6 on 2024-06-19 09:26

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('django_celery_results', '0012_taskresult_date_started'),
]

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 5b852d6

Please sign in to comment.