mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-21 15:17:57 +00:00
79da9e9f4f
(`ruff check --fix`)
26 lines
676 B
Python
26 lines
676 B
Python
from __future__ import annotations
|
|
|
|
import datetime
|
|
from datetime import timezone
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [("api", "0003_auto_20150616_1249")]
|
|
|
|
operations = [
|
|
migrations.RemoveField(model_name="check", name="enabled"),
|
|
migrations.AddField(
|
|
model_name="check",
|
|
name="created",
|
|
field=models.DateTimeField(
|
|
auto_now_add=True,
|
|
default=datetime.datetime(
|
|
2015, 6, 16, 13, 19, 17, 218278, tzinfo=timezone.utc
|
|
),
|
|
),
|
|
preserve_default=False,
|
|
),
|
|
]
|