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.

35 lines
1.2 KiB

  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.10.1 on 2016-12-13 10:59
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('api', '0026_auto_20160415_1824'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='check',
  12. name='kind',
  13. field=models.CharField(choices=[('simple', 'Simple'), ('cron', 'Cron')], default='simple', max_length=10),
  14. ),
  15. migrations.AddField(
  16. model_name='check',
  17. name='schedule',
  18. field=models.CharField(default='* * * * *', max_length=100),
  19. ),
  20. migrations.AddField(
  21. model_name='check',
  22. name='tz',
  23. field=models.CharField(default='UTC', max_length=36),
  24. ),
  25. migrations.AlterField(
  26. model_name='channel',
  27. name='kind',
  28. field=models.CharField(choices=[('email', 'Email'), ('webhook', 'Webhook'), ('hipchat', 'HipChat'), ('slack', 'Slack'), ('pd', 'PagerDuty'), ('po', 'Pushover'), ('pushbullet', 'Pushbullet'), ('opsgenie', 'OpsGenie'), ('victorops', 'VictorOps')], max_length=20),
  29. ),
  30. ]