20 lines
588 B
Python
20 lines
588 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('review', '0009_auto_20161214_1537'),
|
|
]
|
|
|
|
operations = [
|
|
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),
|
|
),
|
|
]
|