mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-23 16:07:39 +00:00
79da9e9f4f
(`ruff check --fix`)
30 lines
782 B
Python
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),
|
|
),
|
|
]
|