Added a migration to match the changed GROUP_EVENT_CHOICES.

- Legacy-Id: 11155
This commit is contained in:
Henrik Levkowetz 2016-05-05 12:26:54 +00:00
parent c4e3f8ad30
commit 3327936884

View file

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('group', '0007_concluded_group_cleanup'),
]
operations = [
migrations.AlterField(
model_name='groupevent',
name='type',
field=models.CharField(max_length=50, choices=[(b'changed_state', b'Changed state'), (b'added_comment', b'Added comment'), (b'info_changed', b'Changed metadata'), (b'requested_close', b'Requested closing group'), (b'changed_milestone', b'Changed milestone'), (b'sent_notification', b'Sent notification'), (b'status_update', b'Status update')]),
preserve_default=True,
),
]