Skip to content

Commit 49fc0d7

Browse files
committed
Change varchar(100) to text field for HistoricalReviewerSettings.history_change_reason, to accomodate longer change descriptions.
- Legacy-Id: 17171
1 parent c13852d commit 49fc0d7

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# -*- coding: utf-8 -*-
2+
# Copyright The IETF Trust 2019, All Rights Reserved
3+
# Generated by Django 1.11.26 on 2019-12-21 11:52
4+
from __future__ import unicode_literals
5+
6+
from django.db import migrations, models
7+
8+
9+
class Migration(migrations.Migration):
10+
11+
dependencies = [
12+
('review', '0022_reviewer_queue_policy_and_request_assignment_next'),
13+
]
14+
15+
operations = [
16+
migrations.AlterField(
17+
model_name='historicalreviewersettings',
18+
name='history_change_reason',
19+
field=models.TextField(null=True),
20+
),
21+
]

0 commit comments

Comments
 (0)