Completed
Push — master ( 8738db...eecf08 )
by Paolo
06:03
created

image_app.migrations.0028_auto_20191003_1042   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 11
dl 0
loc 19
rs 10
c 0
b 0
f 0
1
# -*- coding: utf-8 -*-
2
# Generated by Django 1.11.24 on 2019-10-03 08:42
3
from __future__ import unicode_literals
4
5
from django.db import migrations, models
6
7
8
class Migration(migrations.Migration):
9
10
    dependencies = [
11
        ('image_app', '0027_remove_submission_biosample_submission_id'),
12
    ]
13
14
    operations = [
15
        migrations.AlterField(
16
            model_name='sample',
17
            name='storage',
18
            field=models.SmallIntegerField(blank=True, choices=[(0, 'ambient temperature'), (1, 'cut slide'), (2, 'frozen, -80 degrees Celsius freezer'), (3, 'frozen, -20 degrees Celsius freezer'), (4, 'frozen, liquid nitrogen'), (5, 'frozen, vapor phase'), (6, 'paraffin block'), (7, 'RNAlater, frozen -20 degrees Celsius'), (8, 'TRIzol, frozen'), (9, 'paraffin block at ambient temperatures (+15 to +30 degrees Celsius)'), (10, 'freeze dried'), (11, 'frozen, -40 degrees Celsius freezer')], help_text='How the sample was stored', null=True),
19
        ),
20
    ]
21