21 lines
636 B
Python
21 lines
636 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.17 on 2019-01-17 15:15
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dav_events', '0023_auto_20181121_1422'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='oneclickaction',
|
|
name='command',
|
|
field=models.CharField(choices=[(b'EA', b'accept event'), (b'EP', b'confirm publication of an event'), (b'EL', b'login and go to event list'), (b'EVENT_STATUS_UPDATE', b'update event status')], max_length=254),
|
|
),
|
|
]
|