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