diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 5a3a9d8..e44291e 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -3,7 +3,7 @@ spring: application: name: Demo datasource: - url: jdbc:postgresql://localhost:5432/demo?currentSchema=demo + url: jdbc:postgresql://localhost:5432/demo?currentSchema=public username: postgres password: postgres driver-class-name: org.postgresql.Driver @@ -13,4 +13,4 @@ spring: enabled: true # enables flyway database migration locations: classpath:db/migration/structure, classpath:db/migration/data # the location where flyway should look for migration scripts validate-on-migrate: true - default-schema: demo \ No newline at end of file + default-schema: public \ No newline at end of file