datatracker/ietf/iesg/migrations/0002_auto_20230314_0912.py
Jennifer Richards ab63eb0f48
chore: Add absent iesg 0001_initial.py migration (#5336)
* chore: Add absent iesg 0001_initial.py migration

* chore: Remove index from 0001_initial.py to match production db schema

* chore: Add migration to create index on TelechatDate.date

* chore: Add __init__.py to ietf/iesg/migrations/

* chore: Add type annotation to satisfy linter
2023-03-16 11:02:16 -05:00

18 lines
385 B
Python

# Generated by Django 2.2.28 on 2023-03-14 16:12
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('iesg', '0001_initial'),
]
operations = [
migrations.AddIndex(
model_name='telechatdate',
index=models.Index(fields=['-date'], name='iesg_telech_date_a0e0ed_idx'),
),
]