Split up TR label
This commit is contained in:
parent
1edb557f91
commit
c62fc40f72
3 changed files with 39 additions and 4 deletions
20
ccdb/experiments/migrations/0008_treatment_display_name.py
Normal file
20
ccdb/experiments/migrations/0008_treatment_display_name.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('experiments', '0007_treatment_replicates_display'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='treatment',
|
||||
name='display_name',
|
||||
field=models.CharField(editable=False, default='x', max_length=255),
|
||||
preserve_default=False,
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue