Passed
Pull Request — master (#38)
by Paolo
03:00
created

validation.migrations.0008_remove_validationsummary_json_count   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 10
dl 0
loc 18
rs 10
c 0
b 0
f 0
1
# -*- coding: utf-8 -*-
2
# Generated by Django 1.11.21 on 2019-06-28 09:57
3
from __future__ import unicode_literals
4
5
from django.db import migrations
6
7
8
class Migration(migrations.Migration):
9
10
    dependencies = [
11
        ('validation', '0007_auto_20190620_1642'),
12
    ]
13
14
    operations = [
15
        migrations.RemoveField(
16
            model_name='validationsummary',
17
            name='json_count',
18
        ),
19
    ]
20