Skip to content

Commit 60b3291

Browse files
committed
Add new field
1 parent ad7ac5d commit 60b3291

File tree

6 files changed

+8
-1
lines changed

6 files changed

+8
-1
lines changed

tcrdb/resources/queries/tcrdb/clone_responses/.qview.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<column name="oddsRatio" />
1818
<column name="enrichmentFDR" />
1919
<column name="comments"/>
20+
<column name="status"/>
2021
</columns>
2122
<sorts>
2223
<sort column="cDNA_ID" descending="false" />

tcrdb/resources/queries/tcrdb/clone_responses/Cohort Info.qview.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<column name="oddsRatio" />
1818
<column name="enrichmentFDR" />
1919
<column name="comments"/>
20+
<column name="status"/>
2021
<column name="cDNA_ID/sortId/sampleId/allProjects/projects" />
2122
</columns>
2223
<sorts>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE tcrdb.clone_responses ADD COLUMN status varchar(4000);
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE tcrdb.clone_responses ADD status varchar(4000);

tcrdb/resources/schemas/tcrdb.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,9 @@
167167
<column columnName="cognateCdr3s">
168168
<columnTitle>Cognate CDR3s</columnTitle>
169169
</column>
170+
<column columnName="status">
171+
<columnTitle>Status</columnTitle>
172+
</column>
170173
<column columnName="comments">
171174

172175
</column>

tcrdb/src/org/labkey/tcrdb/TCRdbModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public String getName()
4646
@Override
4747
public Double getSchemaVersion()
4848
{
49-
return 15.63;
49+
return 15.64;
5050
}
5151

5252
@Override

0 commit comments

Comments
 (0)