Skip to content

Commit

Permalink
Follow up to fix failing changeset - TRUNK-4125
Browse files Browse the repository at this point in the history
  • Loading branch information
wluyima committed Dec 3, 2013
1 parent f2b359c commit a0a573f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/main/resources/liquibase-update-to-latest.xml
Expand Up @@ -6498,12 +6498,12 @@

<update tableName="drug_order">
<column name="dosing_type" value="SIMPLE"/>
<where>dosing_type = false </where>
<where>dosing_type = '0'</where>
</update>

<update tableName="drug_order">
<column name="dosing_type" value="FREE_TEXT"/>
<where>dosing_type = true </where>
<where>dosing_type = '1'</where>
</update>

</changeSet>
Expand Down

0 comments on commit a0a573f

Please sign in to comment.