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

image_app.migrations.0029_auto_20190927_1535   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-09-27 13:35
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
        ('image_app', '0028_auto_20190927_1438'),
12
    ]
13
14
    operations = [
15
        migrations.AlterField(
16
            model_name='dictbreed',
17
            name='label',
18
            field=models.CharField(max_length=255, null=True, verbose_name='mapped breed'),
19
        ),
20
        migrations.AlterField(
21
            model_name='dictbreed',
22
            name='term',
23
            field=models.CharField(help_text='Example: LBO_0000347', max_length=255, null=True, verbose_name='mapped breed term'),
24
        ),
25
    ]
26