Total Complexity | 0 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 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 | ), |
||
26 |