From 2f244bd8c8bacb0d987293ceff0c51b62742e31d Mon Sep 17 00:00:00 2001 From: debasishchakraborty-egovt Date: Fri, 6 Oct 2023 13:46:15 +0530 Subject: [PATCH] PFM-4871: added the changes to persist sms in a table in mgramseva --- .../src/main/resources/application.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core-services/egov-notification-sms/src/main/resources/application.properties b/core-services/egov-notification-sms/src/main/resources/application.properties index 81a4929d5..32189dee2 100644 --- a/core-services/egov-notification-sms/src/main/resources/application.properties +++ b/core-services/egov-notification-sms/src/main/resources/application.properties @@ -35,19 +35,19 @@ sms.url.dont_encode_url = true # DB CONNECTION CONFIGURATIONS spring.datasource.driver-class-name=org.postgresql.Driver -spring.datasource.url=jdbc:postgresql://localhost:5432/ifixdb +spring.datasource.url=jdbc:postgresql://localhost:5432/devdb spring.datasource.username=postgres spring.datasource.password=postgres # FLYWAY CONFIGURATIONS -spring.flyway.url=jdbc:postgresql://localhost:5432/ifixdb +spring.flyway.url=jdbc:postgresql://localhost:5432/devdb spring.flyway.user=postgres spring.flyway.password=postgres spring.flyway.baseline-on-migrate=true spring.flyway.outOfOrder=true spring.flyway.locations=classpath:/db/migration/main spring.flyway.enabled=true -spring.flyway.table=ifix_migration_toolkit_schema +spring.flyway.table=eg_notification_sms_schema # KAFKA CONSUMER CONFIGURATIONS spring.kafka.consumer.auto_commit=true