Completed
Pull Request — devel (#71)
by Paolo
06:28
created

uid.migrations.0004_auto_20200131_1622   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 14
dl 0
loc 22
rs 10
c 0
b 0
f 0
1
# Generated by Django 2.2.9 on 2020-01-31 15:22
2
3
from django.db import migrations, models
4
5
6
class Migration(migrations.Migration):
7
8
    dependencies = [
9
        ('uid', '0003_auto_20200129_1630'),
10
    ]
11
12
    operations = [
13
        migrations.AddField(
14
            model_name='animal',
15
            name='same_as',
16
            field=models.CharField(blank=True, max_length=255, null=True),
17
        ),
18
        migrations.AddField(
19
            model_name='sample',
20
            name='same_as',
21
            field=models.CharField(blank=True, max_length=255, null=True),
22
        ),
23
    ]
24