-
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.
add position point to reactive capabilty diagram
- Loading branch information
1 parent
b859c67
commit ca05914
Showing
7 changed files
with
70 additions
and
22 deletions.
There are no files selected for viewing
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
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
33 changes: 33 additions & 0 deletions
33
src/main/resources/db/changelog/changesets/changelog_20241118T203926Z.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,33 @@ | ||
<?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="rehiligha (generated)" id="1731962383078-31"> | ||
<addColumn tableName="battery_modification_entity_reactive_capability_curve_points"> | ||
<column name="pos_point" type="integer"> | ||
<constraints nullable="false"/> | ||
</column> | ||
</addColumn> | ||
</changeSet> | ||
<changeSet author="rehiligha (generated)" id="1731962383078-32"> | ||
<addColumn tableName="converter_station_modification_rcc_points"> | ||
<column name="pos_point" type="integer"> | ||
<constraints nullable="false"/> | ||
</column> | ||
</addColumn> | ||
</changeSet> | ||
<changeSet author="rehiligha (generated)" id="1731962383078-33"> | ||
<addColumn tableName="generator_modification_entity_reactive_capability_curve_points"> | ||
<column name="pos_point" type="integer"> | ||
<constraints nullable="false"/> | ||
</column> | ||
</addColumn> | ||
</changeSet> | ||
<changeSet author="rehiligha (generated)" id="1731962383078-34"> | ||
<addPrimaryKey columnNames="battery_modification_entity_id, pos_point" constraintName="battery_modification_entity_reactive_capability_curve_pointsPK" tableName="battery_modification_entity_reactive_capability_curve_points"/> | ||
</changeSet> | ||
<changeSet author="rehiligha (generated)" id="1731962383078-35"> | ||
<addPrimaryKey columnNames="converter_station_modification_entity_id, pos_point" constraintName="converter_station_modification_rcc_pointsPK" tableName="converter_station_modification_rcc_points"/> | ||
</changeSet> | ||
<changeSet author="rehiligha (generated)" id="1731962383078-36"> | ||
<addPrimaryKey columnNames="generator_modification_entity_id, pos_point" constraintName="generator_modification_entity_reactive_capability_c_4905C1D9_PK" tableName="generator_modification_entity_reactive_capability_curve_points"/> | ||
</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