From 7c96bb7ce0365b4e30b7bfb98eb74dbb3d511b5e Mon Sep 17 00:00:00 2001 From: Alejandro Gallardo Escobar Date: Thu, 30 Apr 2015 20:12:05 +0200 Subject: [PATCH] Added some missing columns --- pandora_console/pandoradb.postgreSQL.sql | 4 +++- pandora_console/pandoradb.sql | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pandora_console/pandoradb.postgreSQL.sql b/pandora_console/pandoradb.postgreSQL.sql index 3fcefb1bf1..1b49687696 100755 --- a/pandora_console/pandoradb.postgreSQL.sql +++ b/pandora_console/pandoradb.postgreSQL.sql @@ -1465,7 +1465,9 @@ CREATE TABLE "tnetwork_map" ( "id_agent" INTEGER NOT NULL default 0, "server_name" VARCHAR(100) NOT NULL, "show_modulegroup" INTEGER NOT NULL default 0, - "l2_network" SMALLINT NOT NULL default 0 + "l2_network" SMALLINT NOT NULL default 0, + "id_tag" INTEGER default 0, + "store_group" INTEGER default 0 ); ------------------------------------------------------------------------ diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 526a8395ae..a094159069 100755 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1548,6 +1548,8 @@ CREATE TABLE IF NOT EXISTS `tnetwork_map` ( `server_name` VARCHAR(100) NOT NULL, `show_modulegroup` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0, `l2_network` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0, + `id_tag` int(11) DEFAULT 0, + `store_group` int(11) DEFAULT 0, PRIMARY KEY (`id_networkmap`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;