diff --git a/ietf/ipr/models.py b/ietf/ipr/models.py index 0af284f0a..b716b228e 100644 --- a/ietf/ipr/models.py +++ b/ietf/ipr/models.py @@ -29,6 +29,9 @@ SELECT_CHOICES = ( ("0", 'NO'), ("1", 'YES'), ("2", 'NO'), + (0, 'NO'), # with new schema, choices are really numeric + (1, 'YES'), + (2, 'NO'), ) STATUS_CHOICES = ( ( 0, "Waiting for approval" ),