File: 0012_taskresult_date_started.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 (23 lines) | stat: -rw-r--r-- 607 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Generated by Django 4.2.13 on 2024-06-02 07:56

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('django_celery_results', '0011_taskresult_periodic_task_name'),
    ]

    operations = [
        migrations.AddField(
            model_name='taskresult',
            name='date_started',
            field=models.DateTimeField(
                default=None,
                help_text='Datetime field when the task was started in UTC',
                null=True,
                verbose_name='Started DateTime',
            ),
        ),
    ]