Adjusted the ReviewRequest.comment AddField migration to match the change in model.
- Legacy-Id: 12553
This commit is contained in:
parent
deb702f538
commit
45d4ce67c7
|
@ -14,6 +14,6 @@ class Migration(migrations.Migration):
|
|||
migrations.AddField(
|
||||
model_name='reviewrequest',
|
||||
name='comment',
|
||||
field=models.CharField(default=b'', help_text=b'Provide any additional information to show to the review team secretary and reviewer', max_length=2048, verbose_name=b"Requester's comments and instructions", blank=True),
|
||||
field=models.TextField(default=b'', help_text=b'Provide any additional information to show to the review team secretary and reviewer', max_length=2048, verbose_name=b"Requester's comments and instructions", blank=True),
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue