mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-21 15:17:57 +00:00
79da9e9f4f
(`ruff check --fix`)
22 lines
491 B
Python
22 lines
491 B
Python
|
|
from django.db import models, migrations
|
|
from django.conf import settings
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("api", "0004_auto_20150616_1319")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="check",
|
|
name="user",
|
|
field=models.ForeignKey(
|
|
blank=True,
|
|
to=settings.AUTH_USER_MODEL,
|
|
null=True,
|
|
on_delete=models.CASCADE,
|
|
),
|
|
)
|
|
]
|