We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2961f4d commit 0487cfcCopy full SHA for 0487cfc
1 file changed
ietf/review/models.py
@@ -1,4 +1,4 @@
1
-# Copyright The IETF Trust 2016-2019, All Rights Reserved
+# Copyright The IETF Trust 2016-2020, All Rights Reserved
2
# -*- coding: utf-8 -*-
3
4
@@ -22,7 +22,7 @@
22
@python_2_unicode_compatible
23
class ReviewerSettings(models.Model):
24
"""Keeps track of admin data associated with a reviewer in a team."""
25
- history = HistoricalRecords()
+ history = HistoricalRecords(history_change_reason_field=models.TextField(null=True))
26
team = ForeignKey(Group, limit_choices_to=~models.Q(reviewteamsettings=None))
27
person = ForeignKey(Person)
28
INTERVALS = [
0 commit comments