Added a migration for a changed help text.
- Legacy-Id: 16914
This commit is contained in:
parent
91d0a79a16
commit
31b09a710e
22
ietf/review/migrations/0019_auto_20191023_0829.py
Normal file
22
ietf/review/migrations/0019_auto_20191023_0829.py
Normal 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),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue