Passed
Pull Request — master (#44)
by Paolo
05:38
created

image_app.migrations.0027_remove_submission_biosample_submission_id   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.22 on 2019-07-23 10:04
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', '0026_auto_20190705_1434'),
12
    ]
13
14
    operations = [
15
        migrations.RemoveField(
16
            model_name='submission',
17
            name='biosample_submission_id',
18
        ),
19
    ]
20