Skip to content

Commit e35c161

Browse files
Fix liquibase type
1 parent 29bac8b commit e35c161

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@ target/
1010
# IntelliJ
1111
/.idea
1212
*.iml
13+
14+
# https://github.com/liquibase/liquibase/issues/2196
15+
/derby.log

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>com.powsybl</groupId>
1515
<artifactId>powsybl-parent-ws</artifactId>
16-
<version>17</version>
16+
<version>18</version>
1717
<relativePath/>
1818
</parent>
1919

src/main/resources/db/changelog/changesets/changelog_20230801T194601Z.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<changeSet author="hedhiliabd" id="1689623201842-1">
44
<validCheckSum>8:e772a722c088f772d9dcc4be222f083b</validCheckSum>
55
<modifyDataType columnName="element_type"
6-
newDataType="tinyint"
6+
newDataType="smallint"
77
tableName="contingency_entity_contingency_elements"/>
88
</changeSet>
99
</databaseChangeLog>

src/test/resources/application-default.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ logging:
1616
powsybl-ws:
1717
database:
1818
vendor: h2:mem
19-
query: ;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
19+
query: ;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE;MODE=PostgreSQL;DEFAULT_NULL_ORDERING=HIGH
2020
hostPort: ":"
2121

2222

0 commit comments

Comments
 (0)