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

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('patchwork', '0018_add_event_model'),
    ]

    operations = [
        migrations.AddField(
            model_name='userprofile',
            name='show_ids',
            field=models.BooleanField(
                default=False,
                help_text=b'Show click-to-copy patch IDs in the list view',
            ),
        ),
    ]