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. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.6 on 2017-12-29 20:08
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [("api", "0034_auto_20171227_1530")]
  7. operations = [
  8. migrations.AlterField(
  9. model_name="channel",
  10. name="kind",
  11. field=models.CharField(
  12. choices=[
  13. ("email", "Email"),
  14. ("webhook", "Webhook"),
  15. ("hipchat", "HipChat"),
  16. ("slack", "Slack"),
  17. ("pd", "PagerDuty"),
  18. ("pagertree", "PagerTree"),
  19. ("po", "Pushover"),
  20. ("pushbullet", "Pushbullet"),
  21. ("opsgenie", "OpsGenie"),
  22. ("victorops", "VictorOps"),
  23. ("discord", "Discord"),
  24. ("telegram", "Telegram"),
  25. ("sms", "SMS"),
  26. ("zendesk", "Zendesk"),
  27. ],
  28. max_length=20,
  29. ),
  30. )
  31. ]