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.

38 lines
1.1 KiB

  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.10.5 on 2017-03-05 19:07
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. import uuid
  6. class Migration(migrations.Migration):
  7. dependencies = [("api", "0027_auto_20161213_1059")]
  8. operations = [
  9. migrations.AddField(
  10. model_name="notification",
  11. name="code",
  12. field=models.UUIDField(default=None, editable=False, null=True),
  13. ),
  14. migrations.AlterField(
  15. model_name="channel",
  16. name="kind",
  17. field=models.CharField(
  18. choices=[
  19. ("email", "Email"),
  20. ("webhook", "Webhook"),
  21. ("hipchat", "HipChat"),
  22. ("slack", "Slack"),
  23. ("pd", "PagerDuty"),
  24. ("po", "Pushover"),
  25. ("pushbullet", "Pushbullet"),
  26. ("opsgenie", "OpsGenie"),
  27. ("victorops", "VictorOps"),
  28. ("discord", "Discord"),
  29. ],
  30. max_length=20,
  31. ),
  32. ),
  33. ]