Skip to content

Commit 686bc79

Browse files
Add supportsNonIdFilters to ehr.reports (#1089)
Upgrade script to add supportsNonIdFilters to ehr.reports
1 parent ddb7788 commit 686bc79

4 files changed

Lines changed: 6 additions & 1 deletion

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE ehr.reports ADD supportsNonIdFilters BOOL DEFAULT NULL;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE ehr.reports ADD supportsNonIdFilters BIT;

ehr/resources/schemas/ehr.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,9 @@
442442
<column columnName="reportstatus">
443443
<description>Optional, description to be presented to user along with report. Might indicate it's a work in progress, for example.</description>
444444
</column>
445+
<column columnName="supportsNonIdFilters">
446+
<nullable>true</nullable>
447+
</column>
445448
</columns>
446449
</table>
447450
<table tableName="cage_observations" tableDbType="TABLE" useColumnOrder="true">

ehr/src/org/labkey/ehr/EHRModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public String getName()
133133
@Override
134134
public @Nullable Double getSchemaVersion()
135135
{
136-
return 26.000;
136+
return 26.001;
137137
}
138138

139139
@Override

0 commit comments

Comments
 (0)