From 31b09a710eef2044f72b07415e5700c47eac04c1 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Wed, 23 Oct 2019 15:31:18 +0000 Subject: [PATCH] Added a migration for a changed help text. - Legacy-Id: 16914 --- .../migrations/0019_auto_20191023_0829.py | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 ietf/review/migrations/0019_auto_20191023_0829.py diff --git a/ietf/review/migrations/0019_auto_20191023_0829.py b/ietf/review/migrations/0019_auto_20191023_0829.py new file mode 100644 index 000000000..9ef375b69 --- /dev/null +++ b/ietf/review/migrations/0019_auto_20191023_0829.py @@ -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), + ), + ]