mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-21 15:17:57 +00:00
20 lines
450 B
Python
20 lines
450 B
Python
# Generated by Django 4.0.6 on 2022-07-13 09:21
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("api", "0092_alter_check_success_kw"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="check",
|
|
name="failure_kw",
|
|
field=models.CharField(blank=True, default="", max_length=200),
|
|
preserve_default=False,
|
|
),
|
|
]
|