summaryrefslogtreecommitdiff
path: root/patchwork/migrations/0028_add_comment_date_index.py
blob: fbb4d7fa33dbc7b21c0b575b23ae5c83190210db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('patchwork', '0027_remove_series_ordering'),
    ]

    operations = [
        migrations.AddIndex(
            model_name='comment',
            index=models.Index(
                fields=['submission', 'date'], name='submission_date_idx'
            ),
        ),
    ]