19 lines
464 B
Python
19 lines
464 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.5 on 2017-02-24 01:12
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('countdown', '0004_countdownitem_recurring_period'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='countdownitem',
|
|
name='recurring_until',
|
|
field=models.DateTimeField(blank=True, default=None, null=True),
|
|
),
|
|
]
|