1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# Generated by Django 2.2.4 on 2019-08-30 00:46
# flake8: noqa
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('django_celery_beat', '0011_auto_20190508_0153'),
]
operations = [
migrations.AddField(
model_name='periodictask',
name='expire_seconds',
field=models.PositiveIntegerField(blank=True, help_text='Timedelta with seconds which the schedule will no longer trigger the task to run', null=True, verbose_name='Expires timedelta with seconds'),
),
]
|