41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.9 on 2018-02-26 12:53
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dav_events', '0014_auto_20180225_1757'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='event',
|
|
old_name='planned_publish_date',
|
|
new_name='planned_publication_date',
|
|
),
|
|
migrations.RenameField(
|
|
model_name='event',
|
|
old_name='published',
|
|
new_name='publication_confirmed',
|
|
),
|
|
migrations.RenameField(
|
|
model_name='event',
|
|
old_name='published_at',
|
|
new_name='publication_confirmed_at',
|
|
),
|
|
migrations.RenameField(
|
|
model_name='event',
|
|
old_name='published_by',
|
|
new_name='publication_confirmed_by',
|
|
),
|
|
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')], max_length=2),
|
|
),
|
|
]
|