Skip to content

Commit

Permalink
PEPPER-1438 Request Status filed_settings value update (#2947)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssettipalli authored Oct 31, 2024
1 parent c835ad8 commit 7e25c43
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
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>
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,5 @@
<include file="liquibase/scad/PEPPER-1426_scad_study_setup.xml" relativeToChangelogFile="true"/>
<include file="liquibase/PEPPER-1437_gp_phone_update.xml" relativeToChangelogFile="true"/>
<include file="liquibase/PEPPER-1522_fedex_account_updates.xml" relativeToChangelogFile="true"/>
<include file="liquibase/PEPPER-1438_field_settings.xml" relativeToChangelogFile="true"/>
</databaseChangeLog>

0 comments on commit 7e25c43

Please sign in to comment.