23 lines
774 B
Python
23 lines
774 B
Python
# Copyright The IETF Trust 2019-2020, All Rights Reserved
|
|
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.25 on 2019-10-23 08:29
|
|
|
|
|
|
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),
|
|
),
|
|
]
|