diff --git a/pandora_console/extras/mr/46.sql b/pandora_console/extras/mr/46.sql
new file mode 100644
index 0000000000..1fb7622f49
--- /dev/null
+++ b/pandora_console/extras/mr/46.sql
@@ -0,0 +1,5 @@
+START TRANSACTION;
+
+ALTER TABLE `tmetaconsole_setup` ADD COLUMN `info_merge` MEDIUMTEXT NOT NULL DEFAULT '';
+
+COMMIT;
\ No newline at end of file
diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql
index 8f4cbf6209..977223b467 100644
--- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql
+++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql
@@ -3987,3 +3987,5 @@ DELETE FROM `tconfig` WHERE `token` = 'ipam_installed';
 
 DELETE FROM `tconfig` WHERE `token` = 'ipam_recon_script_id';
 
+ALTER TABLE `tmetaconsole_setup` ADD COLUMN `info_merge` MEDIUMTEXT NOT NULL DEFAULT '';
+
diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql
index ce3b347df2..fdbaea792a 100644
--- a/pandora_console/pandoradb.sql
+++ b/pandora_console/pandoradb.sql
@@ -2727,9 +2727,10 @@ CREATE TABLE IF NOT EXISTS `tmetaconsole_setup` (
 	`disabled` tinyint(1) unsigned NOT NULL default '0',
 	`last_event_replication` bigint(20) default '0',
 	`server_uid` text NOT NULL default '',
+	`info_merge` MEDIUMTEXT NOT NULL DEFAULT '',
 	PRIMARY KEY  (`id`)
-) ENGINE=InnoDB 
-COMMENT = 'Table to store metaconsole sources' 
+) ENGINE=InnoDB
+COMMENT = 'Table to store metaconsole sources'
 DEFAULT CHARSET=utf8;
 
 -- ---------------------------------------------------------------------