Completed
Push — master ( 8a2447...e2760f )
by Paolo
06:42
created

biosample.migrations.0002_auto_20200124_1712   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 15
dl 0
loc 23
rs 10
c 0
b 0
f 0
1
# Generated by Django 2.2.9 on 2020-01-24 16:12
2
3
import django.contrib.postgres.fields.jsonb
4
from django.db import migrations, models
5
6
7
class Migration(migrations.Migration):
8
9
    dependencies = [
10
        ('biosample', '0001_initial'),
11
    ]
12
13
    operations = [
14
        migrations.AddField(
15
            model_name='submission',
16
            name='samples_count',
17
            field=models.PositiveIntegerField(default=0),
18
        ),
19
        migrations.AddField(
20
            model_name='submission',
21
            name='samples_status',
22
            field=django.contrib.postgres.fields.jsonb.JSONField(default=dict),
23
        ),
24
    ]
25