Skip to content

Commit 0487cfc

Browse files
committed
Changed ReviewerSettings history change-reason field to TextField
- Legacy-Id: 17184
1 parent 2961f4d commit 0487cfc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/review/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright The IETF Trust 2016-2019, All Rights Reserved
1+
# Copyright The IETF Trust 2016-2020, All Rights Reserved
22
# -*- coding: utf-8 -*-
33

44

@@ -22,7 +22,7 @@
2222
@python_2_unicode_compatible
2323
class ReviewerSettings(models.Model):
2424
"""Keeps track of admin data associated with a reviewer in a team."""
25-
history = HistoricalRecords()
25+
history = HistoricalRecords(history_change_reason_field=models.TextField(null=True))
2626
team = ForeignKey(Group, limit_choices_to=~models.Q(reviewteamsettings=None))
2727
person = ForeignKey(Person)
2828
INTERVALS = [

0 commit comments

Comments
 (0)