summaryrefslogtreecommitdiff
path: root/patchwork/migrations/0020_tag_show_column.py
blob: e191ca61ce29907935a7851c9355667e2347709b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('patchwork', '0019_userprofile_show_ids'),
    ]

    operations = [
        migrations.AddField(
            model_name='tag',
            name='show_column',
            field=models.BooleanField(
                default=True,
                help_text=b"Show a column displaying this tag's count in the "
                          b"patch list view",
            ),
        ),
    ]