mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-21 15:17:57 +00:00
6bfd9c901c
Fixes: #945
19 lines
477 B
Python
19 lines
477 B
Python
# Generated by Django 5.0.1 on 2024-02-06 00:56
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('api', '0101_alter_channel_kind'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='check',
|
|
name='kind',
|
|
field=models.CharField(choices=[('simple', 'Simple'), ('cron', 'Cron'), ('oncalendar', 'OnCalendar')], default='simple', max_length=10),
|
|
),
|
|
]
|