Skip to content

Commit b2f6e9c

Browse files
committed
Add column to tcrdb.stims
1 parent 27faf83 commit b2f6e9c

6 files changed

Lines changed: 8 additions & 1 deletion

File tree

tcrdb/resources/queries/tcrdb/stims/.qview.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<column name="flowQuantificationMethod" />
1414
<column name="nClones" />
1515
<column name="comment" />
16+
<column name="status" />
1617
<column name="workbook" />
1718
</columns>
1819
<sorts>

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<column name="flowQuantificationMethod" />
1414
<column name="nClones" />
1515
<column name="comment" />
16+
<column name="status" />
1617
<column name="cDNA_ID/sortId/sampleId/allProjects/projects" />
1718
<column name="workbook" />
1819
</columns>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE tcrdb.stims ADD COLUMN status varchar(1000);
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE tcrdb.stims ADD status varchar(1000);

tcrdb/resources/schemas/tcrdb.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,9 @@
331331
</column>
332332
<column columnName="comment">
333333

334+
</column>
335+
<column columnName="status">
336+
334337
</column>
335338
<column columnName="container">
336339
<isHidden>true</isHidden>

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.61;
49+
return 15.62;
5050
}
5151

5252
@Override

0 commit comments

Comments
 (0)