Completed
Push — master ( c0c2a1...e4f1e8 )
by Paolo
01:28 queued 01:04
created

image_app.migrations.0022_auto_20190614_1500   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

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