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.

31 lines
889 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 = [("accounts", "0011_profile_sort")]
  8. operations = [
  9. migrations.AddField(
  10. model_name="profile",
  11. name="nag_period",
  12. field=models.DurationField(
  13. choices=[
  14. (datetime.timedelta(0), "Disabled"),
  15. (datetime.timedelta(0, 3600), "Hourly"),
  16. (datetime.timedelta(1), "Daily"),
  17. ],
  18. default=datetime.timedelta(0),
  19. ),
  20. ),
  21. migrations.AddField(
  22. model_name="profile",
  23. name="next_nag_date",
  24. field=models.DateTimeField(blank=True, null=True),
  25. ),
  26. ]