Completed
Push — master ( 5644bc...b87258 )
by Paolo
17s queued 13s
created

image_app.migrations.0023_auto_20190701_1317   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 29
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 19
dl 0
loc 29
rs 10
c 0
b 0
f 0
1
# -*- coding: utf-8 -*-
2
# Generated by Django 1.11.21 on 2019-07-01 11:17
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', '0022_auto_20190614_1500'),
12
    ]
13
14
    operations = [
15
        migrations.AddField(
16
            model_name='sample',
17
            name='storage_new',
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')], help_text='How the sample was stored', null=True),
19
        ),
20
        migrations.AddField(
21
            model_name='sample',
22
            name='storage_processing_new',
23
            field=models.SmallIntegerField(blank=True, choices=[(0, 'cryopreservation in liquid nitrogen (dead tissue)'), (1, 'cryopreservation in dry ice (dead tissue)'), (2, 'cryopreservation of live cells in liquid nitrogen'), (3, 'cryopreservation, other'), (4, 'formalin fixed, unbuffered'), (5, 'formalin fixed, buffered'), (6, 'formalin fixed and paraffin embedded'), (7, 'freeze dried (vaiable for reproduction)'), (8, 'freeze dried')], help_text='How the sample was prepared for storage', null=True),
24
        ),
25
        migrations.AlterField(
26
            model_name='sample',
27
            name='availability',
28
            field=models.CharField(blank=True, help_text='Either a link to a web page giving information on who to contact or an e-mail address to contact about availability. If neither available, please use the value no longer available', max_length=255, null=True),
29
        ),
30
    ]
31