diff --git a/src/main/resources/application-mysql.yml b/src/main/resources/application-mysql.yml index 7d4a29e..073a08d 100644 --- a/src/main/resources/application-mysql.yml +++ b/src/main/resources/application-mysql.yml @@ -7,6 +7,6 @@ spring: ddl-auto: update datasource: driver-class-name: com.mysql.cj.jdbc.Driver - username: cubetiq - password: Root$ - url: jdbc:mysql://192.168.0.150:3306/demo \ No newline at end of file + username: root + password: root + url: jdbc:mysql://192.168.0.150:3306/demo diff --git a/src/main/resources/application-postgres.yml b/src/main/resources/application-postgres.yml index 545b8f6..16d6708 100644 --- a/src/main/resources/application-postgres.yml +++ b/src/main/resources/application-postgres.yml @@ -7,6 +7,6 @@ spring: ddl-auto: update datasource: driver-class-name: org.postgresql.Driver - username: cubetiq - password: Root$ - url: jdbc:postgresql://${POSTGRES_HOST:192.168.0.150}:5432/demo \ No newline at end of file + username: root + password: root + url: jdbc:postgresql://${POSTGRES_HOST:192.168.0.150}:5432/demo