Passed
Push — devel ( 2ff9b7...0dd26a )
by Paolo
06:51
created

image_app.migrations.0031_auto_20191029_1732   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 11
dl 0
loc 19
rs 10
c 0
b 0
f 0
1
# -*- coding: utf-8 -*-
2
# Generated by Django 1.11.24 on 2019-10-29 16:32
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', '0030_auto_20191029_1415'),
12
    ]
13
14
    operations = [
15
        migrations.AlterField(
16
            model_name='dictspecie',
17
            name='general_breed_term',
18
            field=models.CharField(blank=True, help_text='Example: LBO_0000001', max_length=255, null=True, verbose_name='general breed term'),
19
        ),
20
    ]
21