Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@ public class NetworkVisualizationParamEntity {
@Column(name = "substation_layout")
private String substationLayout = "horizontal";

// see : https://github.com/powsybl/powsybl-single-line-diagram-server/blob/main/src/main/java/com/powsybl/sld/server/GridSuiteAndConvergenceComponentLibrary.java#L18
// default value for API using it
@Column(name = "component_library")
private String componentLibrary = "";
private String componentLibrary = "GridSuiteAndConvergence";

@Column(name = "init_nad_with_geo_data")
private Boolean initNadWithGeoData = true;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?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="sbouzols" id="737731735522">
<update tableName="network_visualization_params">
<column name="component_library" value="GridSuiteAndConvergence"/>
<where>component_library=''</where>
</update>
</changeSet>
</databaseChangeLog>
4 changes: 4 additions & 0 deletions src/main/resources/db/changelog/db.changelog-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,7 @@ databaseChangeLog:
- include:
file: changesets/changelog_20250124T151522Z.xml
relativeToChangelogFile: true
- include:
file: changesets/changelog_20250205T105256Z.xml
relativeToChangelogFile: true