mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-21 15:17:57 +00:00
79da9e9f4f
(`ruff check --fix`)
17 lines
361 B
Python
17 lines
361 B
Python
|
|
from django.db import models, migrations
|
|
from datetime import timedelta as td
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("api", "0005_auto_20150630_2021")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="check",
|
|
name="grace",
|
|
field=models.DurationField(default=td(0, 3600)),
|
|
)
|
|
]
|