Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 1 | spring: |
| 2 | jpa: |
| 3 | ddl-auto: create |
| 4 | properties: |
| 5 | hibernate: |
| 6 | enable_lazy_load_no_trans: true |
| 7 | dialect: org.hibernate.dialect.PostgreSQLDialect |
puthuparambil.aditya | 495ae8e | 2021-02-23 15:51:00 +0000 | [diff] [blame^] | 8 | |
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 9 | datasource: |
| 10 | url: ${DB_URL} |
| 11 | username: ${DB_USERNAME} |
| 12 | password: ${DB_PASSWORD} |
| 13 | driverClassName: org.postgresql.Driver |
| 14 | initialization-mode: always |
puthuparambil.aditya | 495ae8e | 2021-02-23 15:51:00 +0000 | [diff] [blame^] | 15 | |
| 16 | liquibase: |
| 17 | change-log: classpath:changelog/changelog-master.yaml |