From 018f7808db8a95871722efbf3e660d7a8d62365e Mon Sep 17 00:00:00 2001 From: Thomas Casteleyn Date: Mon, 19 Aug 2024 18:18:21 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B05039=20-=20DataSynchro:=20TEXT=20field?= =?UTF-8?q?=20too=20small=20for=20big=20linkset=20(#479)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/attributedef.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/attributedef.class.inc.php b/core/attributedef.class.inc.php index 724a6b73c..d94843364 100644 --- a/core/attributedef.class.inc.php +++ b/core/attributedef.class.inc.php @@ -2069,7 +2069,7 @@ class AttributeLinkedSet extends AttributeDefinition public function GetImportColumns() { $aColumns = array(); - $aColumns[$this->GetCode()] = 'TEXT'.CMDBSource::GetSqlStringColumnDefinition(); + $aColumns[$this->GetCode()] = 'MEDIUMTEXT'.CMDBSource::GetSqlStringColumnDefinition(); return $aColumns; }