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.

35 lines
1.0 KiB

  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.6 on 2017-12-27 15:30
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [("api", "0033_auto_20170714_1715")]
  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. ],
  27. max_length=20,
  28. ),
  29. )
  30. ]