Passed
Pull Request — master (#39)
by Paolo
03:12
created

image_app.migrations.0025_auto_20190701_1351   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 21
dl 0
loc 32
rs 10
c 0
b 0
f 0
1
# -*- coding: utf-8 -*-
2
# Generated by Django 1.11.21 on 2019-07-01 11:51
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', '0024_auto_20190701_1323'),
12
    ]
13
14
    operations = [
15
        migrations.RemoveField(
16
            model_name='sample',
17
            name='storage',
18
        ),
19
        migrations.RemoveField(
20
            model_name='sample',
21
            name='storage_processing',
22
        ),
23
        migrations.RenameField(
24
            model_name='sample',
25
            old_name='storage_new',
26
            new_name='storage',
27
        ),
28
        migrations.RenameField(
29
            model_name='sample',
30
            old_name='storage_processing_new',
31
            new_name='storage_processing',
32
        ),
33
    ]
34