From 33279368845b0375f69a3c5b5f4e64c727b9be41 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Thu, 5 May 2016 12:26:54 +0000 Subject: [PATCH] Added a migration to match the changed GROUP_EVENT_CHOICES. - Legacy-Id: 11155 --- .../migrations/0008_auto_20160505_0523.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ietf/group/migrations/0008_auto_20160505_0523.py diff --git a/ietf/group/migrations/0008_auto_20160505_0523.py b/ietf/group/migrations/0008_auto_20160505_0523.py new file mode 100644 index 000000000..74687a1f8 --- /dev/null +++ b/ietf/group/migrations/0008_auto_20160505_0523.py @@ -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, + ), + ]