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.

26 lines
886 B

  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 = [
  8. ('api', '0027_auto_20161213_1059'),
  9. ]
  10. operations = [
  11. migrations.AddField(
  12. model_name='notification',
  13. name='code',
  14. field=models.UUIDField(default=None, editable=False, null=True),
  15. ),
  16. migrations.AlterField(
  17. model_name='channel',
  18. name='kind',
  19. field=models.CharField(choices=[('email', 'Email'), ('webhook', 'Webhook'), ('hipchat', 'HipChat'), ('slack', 'Slack'), ('pd', 'PagerDuty'), ('po', 'Pushover'), ('pushbullet', 'Pushbullet'), ('opsgenie', 'OpsGenie'), ('victorops', 'VictorOps'), ('discord', 'Discord')], max_length=20),
  20. ),
  21. ]