Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Liquibase diff when JPA entities not modified #72

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@
/target/
/.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="1626975171877-1">
<validCheckSum>8:69b54d23810d9c683a83059dd23bd9a0</validCheckSum>
<modifyDataType columnName="equipment_type"
newDataType="tinyint"
newDataType="smallint"
tableName="identifier_list_filter"/>
</changeSet>
</databaseChangeLog>
4 changes: 2 additions & 2 deletions src/test/resources/application-default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ spring:
dialect: org.hibernate.dialect.H2Dialect
hibernate.format_sql: true
hibernate:
#to turn off schema validation that fails (because of clob types) and blocks tests even if the the schema is compatible
#to turn off schema validation that fails (because of clob types) and blocks tests even if the schema is compatible
ddl-auto: none
logging:
level:
Expand All @@ -17,5 +17,5 @@ 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: ":"
Loading