forked from GithubBackups/healthchecks
31 lines
995 B
Python
31 lines
995 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.1 on 2016-12-05 08:33
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('api', '0026_auto_20160415_1824'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='check',
|
|
name='schedule',
|
|
field=models.CharField(blank=True, max_length=100),
|
|
),
|
|
migrations.AddField(
|
|
model_name='check',
|
|
name='tz',
|
|
field=models.CharField(default='UTC', max_length=36),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='channel',
|
|
name='kind',
|
|
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),
|
|
),
|
|
]
|