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

uid.migrations.0002_auto_20191118_1700   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.7 on 2019-11-18 16:00
2
3
from django.db import migrations, models
4
5
6
class Migration(migrations.Migration):
7
8
    dependencies = [
9
        ('uid', '0001_initial'),
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