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.

33 lines
989 B

  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.1 on 2017-06-08 11:58
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [("api", "0031_auto_20170509_1320")]
  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. ],
  25. max_length=20,
  26. ),
  27. )
  28. ]