diff --git a/extra/sql/install/OBJ_350.sql b/extra/sql/install/OBJ_350.sql
index 8f75f24..37a35d3 100644
--- a/extra/sql/install/OBJ_350.sql
+++ b/extra/sql/install/OBJ_350.sql
@@ -87,7 +87,7 @@ INSERT INTO `paramConf` VALUES ('smppTON','smppTON','Key Parameter;Name:TON;','K
INSERT INTO `paramConf` VALUES ('smppManipulationFlag','smppManipulationFlag','Key Parameter;Name:Manipulation Flag;','Key Parameter;Name:Manipulation Flag;',19,1,3,'','','','disable=0;enable=1','disable=0;enable=1','Enable or disable CLI Manipulation in XAPP setting.','Enable or disable CLI Manipulation in XAPP setting.',2,3,1,1,8,0,0,0,0,0);
INSERT INTO `paramConf` VALUES ('smppTimeToLive','smppTimeToLive','Key Parameter;Name:Time to Live;','Key Parameter;Name:Time to Live;',19,2,3,'','0','2147483647',NULL,NULL,'Define the maximum duration of a pending message which should be kept in sending array till reaches the called subscriber. Messages can\'t send out in the validity period will be deleted.
- Range = 1 - 604800 seconds','Define the maximum duration of a pending message which should be kept in sending array till reaches the called subscriber. Messages can\'t send out in the validity period will be deleted.
- Range = 1 - 604800 seconds',2,3,1,1,7,0,0,0,0,0);
INSERT INTO `paramConf` VALUES ('smppPlatformNum','smppPlatformNum','Key Parameter;Name:Platform ID;','Key Parameter;Name:Platform ID;',19,1,3,'','','','plat0=0;plat1=1;ignore=2','plat0=0;plat1=1;ignore=2','Specify the serving MSC platform.','Specify the serving MSC platform.',2,3,1,1,6,0,0,0,0,0);
-INSERT INTO `paramConf` VALUES ('smppDataCodingScheme','smppDataCodingScheme','Key Parameter;Name:DCS;','Key Parameter;Name:DCS;',19,1,3,'','','','smpp7def7=0;smpp8dcs4def7=1;smpp8dcs0def7=2;smpp7def8=16;smpp8dcs4def8=17;smpp8dcs0def8=18','smpp7def7=0;smpp8dcs4def7=1;smpp8dcs0def7=2;smpp7def8=16;smpp8dcs4def8=17;smpp8dcs0def8=18','Data Coding Scheme','Data Coding Scheme',2,3,1,1,5,0,0,0,0,0);
+INSERT INTO `paramConf` VALUES ('smppDataCodingScheme','smppDataCodingScheme','Key Parameter;Name:DCS;','Key Parameter;Name:DCS;',19,1,3,'','','','smpp7def7=0;smpp8dcs4def7=1;smpp8dcs0def7=2;smpp7def8=16;smpp8dcs4def8=17;smpp8dcs0def8=18;smpp8dcs0Unpack7=19','smpp7def7=0;smpp8dcs4def7=1;smpp8dcs0def7=2;smpp7def8=16;smpp8dcs4def8=17;smpp8dcs0def8=18;smpp8dcs0Unpack7=19','Data Coding Scheme','Data Coding Scheme',2,3,1,1,5,0,0,0,0,0);
INSERT INTO `paramConf` VALUES ('smppServiceNumber','smppServiceNumber','Key Parameter;Name:Service Number;','Key Parameter;Name:Service Number;',19,2,2,'','0','16',NULL,NULL,'Specify the service center number which will be displayed on the terminating mobile.','Specify the service center number which will be displayed on the terminating mobile.',2,3,1,1,4,0,0,0,0,0);
INSERT INTO `paramConf` VALUES ('smppSessionType','smppSessionType','Key Parameter;Name:Session Type;','Key Parameter;Name:Session Type;',19,1,3,'','','','bindTX=0;bindRX=1;bindTRX=2','bindTX=0;bindRX=1;bindTRX=2','Specify how the local SMPP entity shall bind to the remote SMPP entity.
- Tx = Work as Transmitter
- Rx = Work as Receiver
- TRx = Work as Transceiver','Specify how the local SMPP entity shall bind to the remote SMPP entity.
- Tx = Work as Transmitter
- Rx = Work as Receiver
- TRx = Work as Transceiver',2,3,1,1,3,0,0,0,0,0);
INSERT INTO `paramConf` VALUES ('smppLinkAlias','smppLinkAlias','Key Parameter;Name:Link Alias;','Key Parameter;Name:Link Alias;',19,2,2,'','0','16',NULL,NULL,'Alias of the SMPP link which corresponds to the link configured in EMS > Configuration > NSS > SMPP.','Alias of the SMPP link which corresponds to the link configured in EMS > Configuration > NSS > SMPP.',2,3,1,1,2,0,0,0,0,0);
diff --git a/extra/sql/upgrade/OBJ_350_upg_r2505.1_to_r2506.3.sql b/extra/sql/upgrade/OBJ_350_upg_r2505.1_to_r2506.3.sql
new file mode 100644
index 0000000..12c48fa
--- /dev/null
+++ b/extra/sql/upgrade/OBJ_350_upg_r2505.1_to_r2506.3.sql
@@ -0,0 +1,5 @@
+SET FOREIGN_KEY_CHECKS = 0;
+
+UPDATE `OBJ_350`.`paramConf` SET `setTemplate_1` = 'smpp7def7=0;smpp8dcs4def7=1;smpp8dcs0def7=2;smpp7def8=16;smpp8dcs4def8=17;smpp8dcs0def8=18;smpp8dcs0Unpack7=19', `setTemplate_2` = 'smpp7def7=0;smpp8dcs4def7=1;smpp8dcs0def7=2;smpp7def8=16;smpp8dcs4def8=17;smpp8dcs0def8=18;smpp8dcs0Unpack7=19' WHERE `name_1` = 'smppDataCodingScheme' AND `name_2` = 'smppDataCodingScheme' LIMIT 1;
+
+SET FOREIGN_KEY_CHECKS = 1;
\ No newline at end of file