Completed
Pull Request — devel (#72)
by Paolo
06:25
created

validation.migrations.0002_auto_20191030_1757   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 16
dl 0
loc 25
rs 10
c 0
b 0
f 0
1
# -*- coding: utf-8 -*-
2
# Generated by Django 1.11.24 on 2019-10-30 16:57
3
from __future__ import unicode_literals
4
5
import django.contrib.postgres.fields
6
from django.db import migrations, models
7
8
9
class Migration(migrations.Migration):
10
11
    dependencies = [
12
        ('contenttypes', '0002_remove_content_type_name'),
13
        ('validation', '0001_initial'),
14
    ]
15
16
    operations = [
17
        migrations.AlterField(
18
            model_name='validationresult',
19
            name='messages',
20
            field=django.contrib.postgres.fields.ArrayField(base_field=models.TextField(blank=True, max_length=255), blank=True, default=list, size=None),
21
        ),
22
        migrations.AlterUniqueTogether(
23
            name='validationresult',
24
            unique_together=set([('content_type', 'object_id')]),
25
        ),
26
    ]
27