healthchecks_healthchecks/hc/api/migrations/0074_auto_20200803_1411.py
2023-07-12 10:11:07 +03:00

48 lines
1.5 KiB
Python

# Generated by Django 3.0.8 on 2020-08-03 14:11
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("api", "0073_auto_20200721_1000"),
]
operations = [
migrations.AlterField(
model_name="channel",
name="kind",
field=models.CharField(
choices=[
("email", "Email"),
("webhook", "Webhook"),
("hipchat", "HipChat"),
("slack", "Slack"),
("pd", "PagerDuty"),
("pagertree", "PagerTree"),
("pagerteam", "Pager Team"),
("po", "Pushover"),
("pushbullet", "Pushbullet"),
("opsgenie", "OpsGenie"),
("victorops", "VictorOps"),
("discord", "Discord"),
("telegram", "Telegram"),
("sms", "SMS"),
("zendesk", "Zendesk"),
("trello", "Trello"),
("matrix", "Matrix"),
("whatsapp", "WhatsApp"),
("apprise", "Apprise"),
("mattermost", "Mattermost"),
("msteams", "Microsoft Teams"),
("shell", "Shell Command"),
("zulip", "Zulip"),
("spike", "Spike"),
("call", "Phone Call"),
],
max_length=20,
),
),
]