diff options
Diffstat (limited to 'src/test/resources/application-postgres.yml')
-rw-r--r-- | src/test/resources/application-postgres.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/resources/application-postgres.yml b/src/test/resources/application-postgres.yml new file mode 100644 index 00000000..b75b1e50 --- /dev/null +++ b/src/test/resources/application-postgres.yml @@ -0,0 +1,12 @@ +spring: + datasource: + url: jdbc:postgresql://localhost:5432/juick?stringtype=unspecified + username: juick + password: secret + flyway: + baseline-on-migrate: true + sql: + init: + platform: postgresql + mode: always + |