healthchecks_healthchecks/hc/api/migrations/0024_auto_20160203_2227.py
Pēteris Caune 79da9e9f4f
Fix auto-fixable ruff warnings
(`ruff check --fix`)
2024-11-07 15:15:58 +02:00

28 lines
750 B
Python

# Generated by Django 1.9 on 2016-02-03 22:27
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("api", "0023_auto_20160131_1919")]
operations = [
migrations.AlterField(
model_name="channel",
name="kind",
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,
),
)
]