Added a migration for a changed help text.

- Legacy-Id: 16914
This commit is contained in:
Henrik Levkowetz 2019-10-23 15:31:18 +00:00
parent 91d0a79a16
commit 31b09a710e

View file

@ -0,0 +1,22 @@
# Copyright The IETF Trust 2019, All Rights Reserved
# -*- coding: utf-8 -*-
# Generated by Django 1.11.25 on 2019-10-23 08:29
from __future__ import unicode_literals
import datetime
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('review', '0018_auto_20191015_1014'),
]
operations = [
migrations.AlterField(
model_name='unavailableperiod',
name='start_date',
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),
),
]