File: 0009_periodictask_headers.py

package info (click to toggle)
python-django-celery-beat 2.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,112 kB
  • sloc: python: 3,440; makefile: 319; sh: 22
file content (22 lines) | stat: -rw-r--r-- 567 bytes parent folder | download | duplicates (4)
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 2.1.5 on 2019-02-09 19:33
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('django_celery_beat', '0006_periodictask_priority'),
    ]

    operations = [
        migrations.AddField(
            model_name='periodictask',
            name='headers',
            field=models.TextField(
                blank=True,
                default='{}',
                help_text='JSON encoded message headers',
                verbose_name='Message headers'
            ),
        ),
    ]