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


class Migration(migrations.Migration):

    dependencies = [
        ('patchwork', '0028_add_comment_date_index'),
    ]

    operations = [
        migrations.AddIndex(
            model_name='patch',
            index=models.Index(
                fields=['archived', 'patch_project', 'state', 'delegate'],
                name='patch_list_covering_idx',
            ),
        ),
    ]