2022-07-28 16:56:34 +02:00
|
|
|
spring:
|
|
|
|
sql:
|
|
|
|
init:
|
|
|
|
platform: postgres
|
|
|
|
|
|
|
|
datasource:
|
2022-07-31 18:56:03 +02:00
|
|
|
url: jdbc:tc:postgresql:13.7-bullseye:///spring_boot_testcontainers
|
|
|
|
url-local: jdbc:postgresql://localhost:5432/postgres
|
2022-07-28 16:56:34 +02:00
|
|
|
username: postgres
|
|
|
|
password: password
|
|
|
|
|
|
|
|
jpa:
|
|
|
|
properties:
|
|
|
|
hibernate:
|
|
|
|
default_schema: public
|
2022-07-29 14:24:50 +02:00
|
|
|
dialect: net.hostsharing.hsadminng.config.PostgreSQL95CustomDialect
|
2022-08-12 17:56:39 +02:00
|
|
|
format_sql: false
|
2022-07-28 16:56:34 +02:00
|
|
|
hibernate:
|
|
|
|
ddl-auto: none
|
|
|
|
show-sql: true
|
|
|
|
|
|
|
|
test:
|
|
|
|
database:
|
|
|
|
replace: none
|
|
|
|
|
|
|
|
liquibase:
|
|
|
|
change-log: classpath:/db/changelog/db.changelog-master.yaml
|
2022-07-31 18:56:03 +02:00
|
|
|
contexts: tc,test,dev
|
2022-07-28 16:56:34 +02:00
|
|
|
|
|
|
|
logging:
|
|
|
|
level:
|
|
|
|
liquibase: INFO
|
2022-08-12 17:56:39 +02:00
|
|
|
org.hibernate.SQL: DEBUG
|
|
|
|
org.hibernate.type.descriptor.sql.BasicBinder: TRACE
|
|
|
|
X.org.springframework.jdbc.core: TRACE
|