Skip to content

Commit

Permalink
Fix liquibase type
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan-WorkGH committed Oct 17, 2023
1 parent 29bac8b commit e35c161
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ target/
# IntelliJ
/.idea
*.iml

# https://github.com/liquibase/liquibase/issues/2196
/derby.log
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>com.powsybl</groupId>
<artifactId>powsybl-parent-ws</artifactId>
<version>17</version>
<version>18</version>
<relativePath/>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<changeSet author="hedhiliabd" id="1689623201842-1">
<validCheckSum>8:e772a722c088f772d9dcc4be222f083b</validCheckSum>
<modifyDataType columnName="element_type"
newDataType="tinyint"
newDataType="smallint"
tableName="contingency_entity_contingency_elements"/>
</changeSet>
</databaseChangeLog>
2 changes: 1 addition & 1 deletion src/test/resources/application-default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ logging:
powsybl-ws:
database:
vendor: h2:mem
query: ;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
query: ;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE;MODE=PostgreSQL;DEFAULT_NULL_ORDERING=HIGH
hostPort: ":"


Expand Down

0 comments on commit e35c161

Please sign in to comment.