Passed
Pull Request — devel (#72)
by Paolo
06:50
created

uid.migrations.0003_auto_20191030_1617   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 15
dl 0
loc 24
rs 10
c 0
b 0
f 0
1
# -*- coding: utf-8 -*-
2
# Generated by Django 1.11.24 on 2019-10-30 15:17
3
from __future__ import unicode_literals
4
5
from django.conf import settings
6
from django.db import migrations
7
8
9
class Migration(migrations.Migration):
10
11
    dependencies = [
12
        migrations.swappable_dependency(settings.AUTH_USER_MODEL),
13
        ('uid', '0002_auto_20191030_1348'),
14
    ]
15
16
    operations = [
17
        migrations.AlterUniqueTogether(
18
            name='animal',
19
            unique_together=set([('name', 'breed', 'owner')]),
20
        ),
21
        migrations.AlterUniqueTogether(
22
            name='sample',
23
            unique_together=set([('name', 'animal', 'owner')]),
24
        ),
25
    ]
26