aboutsummaryrefslogtreecommitdiffstats
path: root/rrs/migrations/0011_release_name_unique.py
blob: 0c2442df08428ce2aeec286952b7c20de27b0130 (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 = [
        ('rrs', '0010_recipemaintenancelink'),
    ]

    operations = [
        migrations.AlterField(
            model_name='release',
            name='name',
            field=models.CharField(max_length=100),
        ),
        migrations.AlterUniqueTogether(
            name='release',
            unique_together=set([('plan', 'name')]),
        ),
    ]