From 0487cfce3ee60f8630c120004540ebe56967a63f Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Mon, 6 Jan 2020 18:50:36 +0000 Subject: [PATCH] Changed ReviewerSettings history change-reason field to TextField - Legacy-Id: 17184 --- ietf/review/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/review/models.py b/ietf/review/models.py index fceea2a58..9c2619cbc 100644 --- a/ietf/review/models.py +++ b/ietf/review/models.py @@ -1,4 +1,4 @@ -# Copyright The IETF Trust 2016-2019, All Rights Reserved +# Copyright The IETF Trust 2016-2020, All Rights Reserved # -*- coding: utf-8 -*- @@ -22,7 +22,7 @@ from ietf.utils.models import ForeignKey, OneToOneField @python_2_unicode_compatible class ReviewerSettings(models.Model): """Keeps track of admin data associated with a reviewer in a team.""" - history = HistoricalRecords() + history = HistoricalRecords(history_change_reason_field=models.TextField(null=True)) team = ForeignKey(Group, limit_choices_to=~models.Q(reviewteamsettings=None)) person = ForeignKey(Person) INTERVALS = [