aboutsummaryrefslogtreecommitdiffstats
path: root/rrs/migrations/0018_rmh_unique.py
blob: e378357a98d505f9ea64575666d2a948e9fa9469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- coding: utf-8 -*-
# Generated by Django 1.11.12 on 2018-04-18 05:42
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('layerindex', '0013_patch'),
        ('rrs', '0017_maintenanceplan_maintainer_style'),
    ]

    operations = [
        migrations.AlterField(
            model_name='recipemaintainerhistory',
            name='sha1',
            field=models.CharField(max_length=64),
        ),
        migrations.AlterUniqueTogether(
            name='recipemaintainerhistory',
            unique_together=set([('layerbranch', 'sha1')]),
        ),
    ]