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

13 lines
416 B
Python

from __future__ import annotations
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [("api", "0014_auto_20151019_2039")]
# This migration used to add an index using index_together.
# index_together is gone in Django 5.1, and we don't need it
# anyway because a later migration removes this index.
# So this migration now does nothing.
operations = []