Add yugabytedb support.

This commit is contained in:
Kavin 2023-08-14 06:29:18 +01:00
parent 8f6a954cca
commit 30d7c0323d
No known key found for this signature in database
GPG Key ID: 6E4598CA5C92C41F
2 changed files with 2 additions and 1 deletions

View File

@ -34,6 +34,7 @@ dependencies {
implementation 'org.hibernate:hibernate-core:6.2.7.Final'
implementation 'org.hibernate:hibernate-hikaricp:6.2.7.Final'
implementation 'org.liquibase:liquibase-core:4.23.1'
implementation 'org.liquibase.ext:liquibase-yugabytedb:4.23.0'
implementation 'com.zaxxer:HikariCP:5.0.1'
implementation 'org.springframework.security:spring-security-crypto:6.1.2'
implementation 'commons-logging:commons-logging:1.2'

View File

@ -7,7 +7,7 @@
<changeSet id="0-1" author="kavin" runInTransaction="false">
<sqlFile path="0-1-init.sql" relativeToChangelogFile="true"/>
<sqlFile path="0-1-init-crdb.sql" dbms="cockroachdb" relativeToChangelogFile="true"/>
<sqlFile path="0-1-init-pg.sql" dbms="postgresql" relativeToChangelogFile="true"/>
<sqlFile path="0-1-init-pg.sql" dbms="postgresql,yugabytedb" relativeToChangelogFile="true"/>
</changeSet>
</databaseChangeLog>