Completed
Pull Request — master (#51)
by Paolo
05:47
created

image_app.migrations.0028_auto_20190927_1438   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 18
dl 0
loc 28
rs 10
c 0
b 0
f 0
1
# -*- coding: utf-8 -*-
2
# Generated by Django 1.11.24 on 2019-09-27 12:38
3
from __future__ import unicode_literals
4
5
from django.db import migrations
6
7
8
class Migration(migrations.Migration):
9
10
    dependencies = [
11
        ('image_app', '0027_remove_submission_biosample_submission_id'),
12
    ]
13
14
    operations = [
15
        migrations.AlterModelOptions(
16
            name='dictbreed',
17
            options={'verbose_name': 'breed'},
18
        ),
19
        migrations.RenameField(
20
            model_name='dictbreed',
21
            old_name='mapped_breed',
22
            new_name='label',
23
        ),
24
        migrations.RenameField(
25
            model_name='dictbreed',
26
            old_name='mapped_breed_term',
27
            new_name='term',
28
        ),
29
    ]
30