Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE ehr.reports ADD supportsNonIdFilters BOOL DEFAULT NULL;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE ehr.reports ADD supportsNonIdFilters BIT;
3 changes: 3 additions & 0 deletions ehr/resources/schemas/ehr.xml
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,9 @@
<column columnName="reportstatus">
<description>Optional, description to be presented to user along with report. Might indicate it's a work in progress, for example.</description>
</column>
<column columnName="supportsNonIdFilters">
<nullable>true</nullable>
</column>
</columns>
</table>
<table tableName="cage_observations" tableDbType="TABLE" useColumnOrder="true">
Expand Down
2 changes: 1 addition & 1 deletion ehr/src/org/labkey/ehr/EHRModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public String getName()
@Override
public @Nullable Double getSchemaVersion()
{
return 26.000;
return 26.001;
}

@Override
Expand Down