File: 0011_taskresult_periodic_task_name.py

package info (click to toggle)
python-django-celery-results 2.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 696 kB
  • sloc: python: 2,373; makefile: 312; sh: 7; sql: 2
file content (22 lines) | stat: -rw-r--r-- 585 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Generated by Django 3.2.8 on 2021-11-10 08:05

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('django_celery_results', '0010_remove_duplicate_indices'),
    ]

    operations = [
        migrations.AddField(
            model_name='taskresult',
            name='periodic_task_name',
            field=models.CharField(
                help_text='Name of the Periodic Task which was run',
                max_length=255,
                null=True,
                verbose_name='Periodic Task Name'),
        ),
    ]