mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-24 16:26:49 +00:00
79da9e9f4f
(`ruff check --fix`)
27 lines
706 B
Python
27 lines
706 B
Python
|
|
from django.db import models, migrations
|
|
from datetime import timedelta as td
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("api", "0002_auto_20150616_0732")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="check",
|
|
name="name",
|
|
field=models.CharField(max_length=100, blank=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="check",
|
|
name="alert_after",
|
|
field=models.DateTimeField(editable=False, null=True, blank=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="check",
|
|
name="timeout",
|
|
field=models.DurationField(default=td(1)),
|
|
),
|
|
]
|