-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PEPPER-1438 Request Status filed_settings value update (#2947)
- Loading branch information
1 parent
c835ad8
commit 7e25c43
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
pepper-apis/dsm-core/src/main/resources/liquibase/PEPPER-1438_field_settings.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<databaseChangeLog | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="http://www.liquibase.org/xml/ns/dbchangelog" | ||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog | ||
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd"> | ||
|
||
<changeSet author="sampath" id="PEPPER-1438_field_settings"> | ||
<update tableName="field_settings"> | ||
<column name="possible_values" | ||
value='[{"value": "review"},{"value": "no"},{"value": "hold"},{"value": "request"},{"value": "sent"},{"value": "received"},{"value": "receivedIncomplete"},{"value": "returned"},{"value": "unableObtainTissue"}]'/> | ||
<where>column_name = 'REQUEST_STATUS'</where> | ||
</update> | ||
</changeSet> | ||
</databaseChangeLog> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters