Skip to content

Commit

Permalink
Fix migration for 3WT ratiotapchangerregulationmode
Browse files Browse the repository at this point in the history
Signed-off-by: BOUHOURS Antoine <[email protected]>
  • Loading branch information
antoinebhs committed Mar 25, 2024
1 parent 3e1bbce commit 8dae060
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="bouhoursant" id="2986331049276-1">
<update tableName="threewindingstransformer">
<column name="ratiotapchangerregulationmode1" value='"VOLTAGE"'/>
<where>ratiotapchangerregulationmode1 = 'VOLTAGE'</where>
</update>
<update tableName="threewindingstransformer">
<column name="ratiotapchangerregulationmode2" value='"VOLTAGE"'/>
<where>ratiotapchangerregulationmode2 = 'VOLTAGE'</where>
</update>
<update tableName="threewindingstransformer">
<column name="ratiotapchangerregulationmode3" value='"VOLTAGE"'/>
<where>ratiotapchangerregulationmode3 = 'VOLTAGE'</where>
</update>
</changeSet>
</databaseChangeLog>
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,7 @@ databaseChangeLog:
- include:
file: changesets/changelog_20240223T120001Z.xml
relativeToChangelogFile: true

- include:
file: changesets/changelog_20240325T120001Z.xml
relativeToChangelogFile: true

0 comments on commit 8dae060

Please sign in to comment.