-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix migration for 3WT ratiotapchangerregulationmode
Signed-off-by: BOUHOURS Antoine <[email protected]>
- Loading branch information
1 parent
3e1bbce
commit 8dae060
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
...rk-store-server/src/main/resources/db/changelog/changesets/changelog_20240325T120001Z.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,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> |
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