Total Complexity | 0 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 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 | ), |
||
25 |