You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
778 B

  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.6 on 2017-10-14 10:02
  3. from __future__ import unicode_literals
  4. import datetime
  5. from django.db import migrations, models
  6. class Migration(migrations.Migration):
  7. dependencies = [
  8. ('accounts', '0011_profile_sort'),
  9. ]
  10. operations = [
  11. migrations.AddField(
  12. model_name='profile',
  13. name='nag_period',
  14. field=models.DurationField(choices=[(datetime.timedelta(0), 'Disabled'), (datetime.timedelta(0, 3600), 'Hourly'), (datetime.timedelta(1), 'Daily')], default=datetime.timedelta(0)),
  15. ),
  16. migrations.AddField(
  17. model_name='profile',
  18. name='next_nag_date',
  19. field=models.DateTimeField(blank=True, null=True),
  20. ),
  21. ]