From 991c7a5e54087a5dfcd07135079b721c15b59bb0 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sat, 14 Jul 2018 16:26:11 +0000 Subject: [PATCH] Captured another GroupFeatures model tweak. - Legacy-Id: 15330 --- .../migrations/0002_groupfeatures_historicalgroupfeatures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/group/migrations/0002_groupfeatures_historicalgroupfeatures.py b/ietf/group/migrations/0002_groupfeatures_historicalgroupfeatures.py index ac5bcbba0..d3efd2a42 100644 --- a/ietf/group/migrations/0002_groupfeatures_historicalgroupfeatures.py +++ b/ietf/group/migrations/0002_groupfeatures_historicalgroupfeatures.py @@ -25,7 +25,7 @@ class Migration(migrations.Migration): migrations.CreateModel( name='GroupFeatures', fields=[ - ('type', ietf.utils.models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, primary_key=True, serialize=False, to='name.GroupTypeName')), + ('type', ietf.utils.models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, primary_key=True, serialize=False, to='name.GroupTypeName', related_name='features')), ('has_milestones', models.BooleanField(default=False, verbose_name=b'Milestones')), ('has_chartering_process', models.BooleanField(default=False, verbose_name=b'Chartering')), ('has_documents', models.BooleanField(default=False, verbose_name=b'Documents')),