27 lines
1020 B
Python
27 lines
1020 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.17 on 2019-01-23 15:28
|
|
from __future__ import unicode_literals
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dav_events', '0025_auto_20190117_1518'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='eventstatus',
|
|
name='code',
|
|
field=models.CharField(max_length=254, primary_key=True, serialize=False, validators=[django.core.validators.RegexValidator(b'^[0-9a-z_.-]*$', b'Only lower case latin characters (a-z), digits (0-9), dots (.), underscores (_) and hyphens (-) are allowed.')]),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='oneclickaction',
|
|
name='command',
|
|
field=models.CharField(choices=[(b'EVENT_LIST', b'login and go to event list (user id)'), (b'EVENT_STATUS_UPDATE', b'update event status (event id,status code,user id)')], max_length=254),
|
|
),
|
|
]
|