summaryrefslogtreecommitdiff
path: root/patchwork/migrations/0005_unselectable_maintainer_projects.py
blob: 7d6be1bdac083db87a6cd66f1028bc23bcb47562 (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', '0004_add_delegation_rule_model'),
    ]

    operations = [
        migrations.AlterField(
            model_name='userprofile',
            name='maintainer_projects',
            field=models.ManyToManyField(
                related_name='maintainer_project',
                to='patchwork.Project',
                blank=True,
            ),
        ),
    ]