healthchecks_healthchecks/hc/accounts/migrations/0012_auto_20171014_1002.py
Pēteris Caune 79da9e9f4f
Fix auto-fixable ruff warnings
(`ruff check --fix`)
2024-11-07 15:15:58 +02:00

30 lines
782 B
Python

# Generated by Django 1.11.6 on 2017-10-14 10:02
from datetime import timedelta as td
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("accounts", "0011_profile_sort")]
operations = [
migrations.AddField(
model_name="profile",
name="nag_period",
field=models.DurationField(
choices=[
(td(0), "Disabled"),
(td(0, 3600), "Hourly"),
(td(1), "Daily"),
],
default=td(0),
),
),
migrations.AddField(
model_name="profile",
name="next_nag_date",
field=models.DateTimeField(blank=True, null=True),
),
]