-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migration MAXIMUM_Q_AT_NOMINAL_VOLTAGE to MAX_Q_AT_NOMINAL_V for modi…
…fication by filter and by formula Signed-off-by: Thang PHAM <[email protected]>
- Loading branch information
Showing
4 changed files
with
30 additions
and
4 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
src/main/resources/db/changelog/changesets/changelog_20241216T142706Z.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,23 @@ | ||
<?xml version="1.1" encoding="UTF-8" standalone="no"?> | ||
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:pro="http://www.liquibase.org/xml/ns/pro" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-latest.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd"> | ||
<changeSet author="phamquy (generated)" id="1734359257002-1"> | ||
<update tableName="assignment"> | ||
<column name="edited_field" value="MAX_Q_AT_NOMINAL_V"/> | ||
<where>edited_field='MAXIMUM_Q_AT_NOMINAL_VOLTAGE'</where> | ||
</update> | ||
</changeSet> | ||
<changeSet author="phamquy (generated)" id="1734359257002-2"> | ||
<update tableName="formula"> | ||
<column name="edited_field" value="MAX_Q_AT_NOMINAL_V"/> | ||
<where>edited_field='MAXIMUM_Q_AT_NOMINAL_VOLTAGE'</where> | ||
</update> | ||
<update tableName="formula"> | ||
<column name="equipment_field1" value="MAX_Q_AT_NOMINAL_V"/> | ||
<where>equipment_field1='MAXIMUM_Q_AT_NOMINAL_VOLTAGE'</where> | ||
</update> | ||
<update tableName="formula"> | ||
<column name="equipment_field2" value="MAX_Q_AT_NOMINAL_V"/> | ||
<where>equipment_field2='MAXIMUM_Q_AT_NOMINAL_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
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
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