* 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
18 lines
385 B
Python
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'),
|
|
),
|
|
]
|