Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 @@ -29,7 +29,7 @@ public class NetworkVisualizationParamEntity {
private UUID id;

@Column(name = "line_full_path")
private Boolean lineFullPath = true;
private Boolean lineFullPath = false;

@Column(name = "line_parallel_path")
private Boolean lineParallelPath = true;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?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="jeandatcar (generated)" id="1756990189108-1">
<addDefaultValue catalogName="studyconfig" columnName="line_full_path" defaultValue="false" tableName="network_visualization_params"/>
</changeSet>
<changeSet author="jeandatcar (generated)" id="1756990189108-2">
<update catalogName="studyconfig" tableName="network_visualization_params">
<column name="line_full_path" valueBoolean="false"/>
</update>
</changeSet>
</databaseChangeLog>
3 changes: 3 additions & 0 deletions src/main/resources/db/changelog/db.changelog-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,6 @@ databaseChangeLog:
- include:
file: changesets/changelog_20250723T155729Z.xml
relativeToChangelogFile: true
- include:
file: changesets/changelog_20250904T124940Z.xml
relativeToChangelogFile: true