Adjusted the ReviewRequest.comment AddField migration to match the change in model.

- Legacy-Id: 12553
This commit is contained in:
Henrik Levkowetz 2016-12-16 12:55:37 +00:00
parent deb702f538
commit 45d4ce67c7

View file

@ -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),
),
]