From 04feecebd113fe13729fad0769fbff69a1c5835c Mon Sep 17 00:00:00 2001 From: Uma <uma.s@vtiger.com> Date: Fri, 15 May 2020 15:07:06 +0530 Subject: [PATCH] image field uitype supported in webservices field --- modules/Migration/schema/720_to_721.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/Migration/schema/720_to_721.php b/modules/Migration/schema/720_to_721.php index 11b615637..c9fcdbd96 100644 --- a/modules/Migration/schema/720_to_721.php +++ b/modules/Migration/schema/720_to_721.php @@ -225,4 +225,9 @@ if (defined('VTIGER_UPGRADE')) { } //4537596 - END } + + //image uitype added for webservice fieldtype + $sql = 'insert into vtiger_ws_fieldtype(uitype,fieldtype) values (?,?)'; + $params = array('69', 'image'); + $db->pquery($sql, $params); } \ No newline at end of file -- GitLab