bornhack-website/src/teams/migrations/0043_auto_20180804_1641.py

29 lines
832 B
Python
Raw Normal View History

# Generated by Django 2.0.4 on 2018-08-04 14:41
import django.contrib.postgres.fields.ranges
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("teams", "0042_auto_20180413_1933")]
operations = [
migrations.AddField(
2019-06-16 12:32:24 +00:00
model_name="teamtask",
name="completed",
field=models.BooleanField(
default=False, help_text="Check to mark this task as completed."
),
),
migrations.AddField(
2019-06-16 12:32:24 +00:00
model_name="teamtask",
name="when",
field=django.contrib.postgres.fields.ranges.DateTimeRangeField(
blank=True,
help_text="When does this task need to be started and/or finished?",
null=True,
),
),
]