blob: 7454ad21ef0c58883d911497819f46c98ca97183 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
spring:
jpa:
ddl-auto: create
properties:
hibernate:
enable_lazy_load_no_trans: true
dialect: org.hibernate.dialect.PostgreSQLDialect
datasource:
url: ${DB_URL}
username: ${DB_USERNAME}
password: ${DB_PASSWORD}
driverClassName: org.postgresql.Driver
initialization-mode: always
liquibase:
change-log: classpath:changelog/changelog-master.yaml
|