Completed
Pull Request — devel (#71)
by Paolo
07:04
created

uid.migrations.0004_auto_20191106_1743   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-11-06 16:43
3
from __future__ import unicode_literals
4
5
from django.db import migrations, models
6
7
8
class Migration(migrations.Migration):
9
10
    dependencies = [
11
        ('uid', '0003_auto_20191030_1617'),
12
    ]
13
14
    operations = [
15
        migrations.AddField(
16
            model_name='animal',
17
            name='same_as',
18
            field=models.CharField(blank=True, max_length=255, null=True),
19
        ),
20
        migrations.AddField(
21
            model_name='sample',
22
            name='same_as',
23
            field=models.CharField(blank=True, max_length=255, null=True),
24
        ),
25
    ]
26