healthchecks_healthchecks/hc/api/migrations/0101_alter_channel_kind.py
2023-11-22 10:16:27 +02:00

54 lines
1.8 KiB
Python

# Generated by Django 5.0rc1 on 2023-11-22 08:15
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("api", "0100_opsgenie_values"),
]
operations = [
migrations.AlterField(
model_name="channel",
name="kind",
field=models.CharField(
choices=[
("apprise", "Apprise"),
("call", "Phone Call"),
("discord", "Discord"),
("email", "Email"),
("gotify", "Gotify"),
("group", "Group"),
("hipchat", "HipChat"),
("linenotify", "LINE Notify"),
("matrix", "Matrix"),
("mattermost", "Mattermost"),
("msteams", "Microsoft Teams"),
("ntfy", "ntfy"),
("opsgenie", "Opsgenie"),
("pagerteam", "Pager Team"),
("pagertree", "PagerTree"),
("pd", "PagerDuty"),
("po", "Pushover"),
("pushbullet", "Pushbullet"),
("rocketchat", "Rocket.Chat"),
("shell", "Shell Command"),
("signal", "Signal"),
("slack", "Slack"),
("sms", "SMS"),
("spike", "Spike"),
("telegram", "Telegram"),
("trello", "Trello"),
("victorops", "Splunk On-Call"),
("webhook", "Webhook"),
("whatsapp", "WhatsApp"),
("zendesk", "Zendesk"),
("zulip", "Zulip"),
],
max_length=20,
),
),
]