32 lines
907 B
Python
32 lines
907 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.9 on 2018-01-29 11:17
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dav_events', '0006_oneclickaction'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='oneclickaction',
|
|
name='allow_repeat',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
migrations.AddField(
|
|
model_name='oneclickaction',
|
|
name='command',
|
|
field=models.CharField(choices=[(b'EA', b'accept event'), (b'EP', b'mark event as published')], default='EA', max_length=2),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AddField(
|
|
model_name='oneclickaction',
|
|
name='parameters',
|
|
field=models.TextField(blank=True),
|
|
),
|
|
]
|