You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.1 KiB

  1. # Generated by Django 2.1.7 on 2019-03-12 17:16
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [("api", "0057_auto_20190118_1319")]
  5. operations = [
  6. migrations.AlterField(
  7. model_name="channel",
  8. name="kind",
  9. field=models.CharField(
  10. choices=[
  11. ("email", "Email"),
  12. ("webhook", "Webhook"),
  13. ("hipchat", "HipChat"),
  14. ("slack", "Slack"),
  15. ("pd", "PagerDuty"),
  16. ("pagertree", "PagerTree"),
  17. ("po", "Pushover"),
  18. ("pushbullet", "Pushbullet"),
  19. ("opsgenie", "OpsGenie"),
  20. ("victorops", "VictorOps"),
  21. ("discord", "Discord"),
  22. ("telegram", "Telegram"),
  23. ("sms", "SMS"),
  24. ("zendesk", "Zendesk"),
  25. ("trello", "Trello"),
  26. ("matrix", "Matrix"),
  27. ],
  28. max_length=20,
  29. ),
  30. )
  31. ]