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.

20 lines
624 B

  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.9 on 2016-02-03 22:27
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('api', '0023_auto_20160131_1919'),
  8. ]
  9. operations = [
  10. migrations.AlterField(
  11. model_name='channel',
  12. name='kind',
  13. field=models.CharField(choices=[(b'email', b'Email'), (b'webhook', b'Webhook'), (b'hipchat', b'HipChat'), (b'slack', b'Slack'), (b'pd', b'PagerDuty'), (b'po', b'Pushover'), (b'victorops', b'VictorOps')], max_length=20),
  14. ),
  15. ]