Skip to content

Commit 3327936

Browse files
committed
Added a migration to match the changed GROUP_EVENT_CHOICES.
- Legacy-Id: 11155
1 parent c4e3f8a commit 3327936

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import models, migrations
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('group', '0007_concluded_group_cleanup'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='groupevent',
16+
name='type',
17+
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')]),
18+
preserve_default=True,
19+
),
20+
]

0 commit comments

Comments
 (0)