| Total Complexity | 0 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | # -*- coding: utf-8 -*- |
||
| 2 | # Generated by Django 1.11.22 on 2019-07-18 14:53 |
||
| 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 | ('biosample', '0004_auto_20190716_1628'), |
||
| 12 | ] |
||
| 13 | |||
| 14 | operations = [ |
||
| 15 | migrations.RemoveField( |
||
| 16 | model_name='submission', |
||
| 17 | name='usi_submission_id', |
||
| 18 | ), |
||
| 19 | migrations.RemoveField( |
||
| 20 | model_name='submissiondata', |
||
| 21 | name='status', |
||
| 22 | ), |
||
| 23 | migrations.AddField( |
||
| 24 | model_name='submission', |
||
| 25 | name='message', |
||
| 26 | field=models.TextField(blank=True, null=True), |
||
| 27 | ), |
||
| 28 | migrations.AddField( |
||
| 29 | model_name='submission', |
||
| 30 | name='usi_submission_name', |
||
| 31 | field=models.CharField(blank=True, db_index=True, help_text='USI submission name', max_length=255, null=True, unique=True), |
||
| 32 | ), |
||
| 34 |