From 1ccdb4ee911915c0763e8958b56895e478cb1f47 Mon Sep 17 00:00:00 2001 From: debasishchakraborty-egovt Date: Thu, 5 Oct 2023 16:49:40 +0530 Subject: [PATCH] PFM-4871: added the changes to persist sms in a table in mgramseva --- .../db/migration.main/V20231005150835_notification_sms_ddl.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core-services/egov-notification-sms/src/main/resources/db/migration.main/V20231005150835_notification_sms_ddl.sql b/core-services/egov-notification-sms/src/main/resources/db/migration.main/V20231005150835_notification_sms_ddl.sql index a5cc0b613..e5344c243 100644 --- a/core-services/egov-notification-sms/src/main/resources/db/migration.main/V20231005150835_notification_sms_ddl.sql +++ b/core-services/egov-notification-sms/src/main/resources/db/migration.main/V20231005150835_notification_sms_ddl.sql @@ -1,5 +1,5 @@ CREATE TABLE IF NOT EXISTS eg_notification_sms ( - id CHARACTER VARYING (128) NOT NULL, + id SERIAL PRIMARY KEY, mobile_no VARCHAR(20) NOT NULL, message TEXT, category VARCHAR(50),