Skip to content

Commit 31b09a7

Browse files
committed
Added a migration for a changed help text.
- Legacy-Id: 16914
1 parent 91d0a79 commit 31b09a7

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Copyright The IETF Trust 2019, All Rights Reserved
2+
# -*- coding: utf-8 -*-
3+
# Generated by Django 1.11.25 on 2019-10-23 08:29
4+
from __future__ import unicode_literals
5+
6+
import datetime
7+
from django.db import migrations, models
8+
9+
10+
class Migration(migrations.Migration):
11+
12+
dependencies = [
13+
('review', '0018_auto_20191015_1014'),
14+
]
15+
16+
operations = [
17+
migrations.AlterField(
18+
model_name='unavailableperiod',
19+
name='start_date',
20+
field=models.DateField(default=datetime.date.today, help_text="Choose the start date so that you can still do a review if it's assigned just before the start date - this usually means you should mark yourself unavailable for assignment some time before you are actually away. The default is today.", null=True),
21+
),
22+
]

0 commit comments

Comments
 (0)