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.

34 lines
1.0 KiB

  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.1 on 2017-07-14 17:15
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [("api", "0032_auto_20170608_1158")]
  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. ("po", "Pushover"),
  19. ("pushbullet", "Pushbullet"),
  20. ("opsgenie", "OpsGenie"),
  21. ("victorops", "VictorOps"),
  22. ("discord", "Discord"),
  23. ("telegram", "Telegram"),
  24. ("sms", "SMS"),
  25. ],
  26. max_length=20,
  27. ),
  28. )
  29. ]