Completed
Push — master ( 55dedd...16663f )
by Paolo
30s queued 14s
created

biosample.migrations.0005_orphansample_status   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 10
dl 0
loc 17
rs 10
c 0
b 0
f 0
1
# Generated by Django 2.2.10 on 2020-05-29 14:12
2
3
from django.db import migrations, models
4
5
6
class Migration(migrations.Migration):
7
8
    dependencies = [
9
        ('biosample', '0004_auto_20200127_1615'),
10
    ]
11
12
    operations = [
13
        migrations.AddField(
14
            model_name='orphansample',
15
            name='status',
16
            field=models.SmallIntegerField(choices=[(0, 'Waiting'), (1, 'Loaded'), (2, 'Submitted'), (3, 'Error'), (4, 'Need Revision'), (5, 'Ready'), (6, 'Completed')], default=5, help_text='example: Waiting'),
17
        ),
18
    ]
19