2012-02-28 Vanessa Gil <vanessa.gil@artica.es>
* pandoradb.sql pandoradb.oracle.sql pandoradb.postgreSQL.sql extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql extras/pandoradb_migrate_4.0.x_to_4.1.oracle.sql extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql: Fixed bug: Wrong module type names in create module view. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5667 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
a0230c430c
commit
a9ff31edae
|
@ -1,3 +1,13 @@
|
|||
2012-02-28 Vanessa Gil <vanessa.gil@artica.es>
|
||||
|
||||
* pandoradb.sql
|
||||
pandoradb.oracle.sql
|
||||
pandoradb.postgreSQL.sql
|
||||
extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql
|
||||
extras/pandoradb_migrate_4.0.x_to_4.1.oracle.sql
|
||||
extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql: Fixed bug: Wrong module
|
||||
type names in create module view.
|
||||
|
||||
2012-02-28 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/functions_networkmap.php: fixed into the function
|
||||
|
|
|
@ -172,3 +172,10 @@ ALTER TABLE treport ADD COLUMN `id_template` INTEGER UNSIGNED DEFAULT 0;
|
|||
-- Table `tgraph`
|
||||
-- -----------------------------------------------------
|
||||
ALTER TABLE `tgraph` ADD COLUMN `id_graph_template` int(11) NOT NULL DEFAULT 0;
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table `ttipo_modulo`
|
||||
-- -----------------------------------------------------
|
||||
UPDATE ttipo_modulo SET descripcion='Generic data' WHERE id_tipo=1;
|
||||
|
||||
UPDATE ttipo_modulo SET descripcion='Generic data incremental' WHERE id_tipo=4;
|
||||
|
|
|
@ -163,3 +163,10 @@ ALTER TABLE treport ADD (id_template NUMBER(10, 0) default 0 NOT NULL);
|
|||
-- Table `tgraph`
|
||||
-- -----------------------------------------------------
|
||||
ALTER TABLE tgraph ADD (id_graph_template NUMBER(11, 0) default 0 NOT NULL);
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table `ttipo_modulo`
|
||||
-- -----------------------------------------------------
|
||||
UPDATE ttipo_modulo SET descripcion='Generic data' WHERE id_tipo=1;
|
||||
|
||||
UPDATE ttipo_modulo SET descripcion='Generic data incremental' WHERE id_tipo=4;
|
||||
|
|
|
@ -150,3 +150,10 @@ ALTER TABLE "treport" ADD COLUMN "id_template" INTEGER NOT NULL default 0;
|
|||
-- Table `tgraph`
|
||||
-- -----------------------------------------------------
|
||||
ALTER TABLE "tgraph" ADD COLUMN "id_graph_template" INTEGER NOT NULL default 0;
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table `ttipo_modulo`
|
||||
-- -----------------------------------------------------
|
||||
UPDATE "ttipo_modulo" SET "descripcion"='Generic data' WHERE "id_tipo"=1;
|
||||
|
||||
UPDATE "ttipo_modulo" SET "descripcion"='Generic data incremental' WHERE "id_tipo"=4;
|
||||
|
|
|
@ -242,10 +242,10 @@ END;;
|
|||
-- Identifiers 30 and 31 are reserved for Enterprise data types
|
||||
BEGIN
|
||||
LOCK TABLE ttipo_modulo IN EXCLUSIVE MODE;
|
||||
INSERT INTO ttipo_modulo VALUES (1,'generic_data',0,'Generic numeric','mod_data.png');
|
||||
INSERT INTO ttipo_modulo VALUES (1,'generic_data',0,'Generic data','mod_data.png');
|
||||
INSERT INTO ttipo_modulo VALUES (2,'generic_proc',1,'Generic boolean','mod_proc.png');
|
||||
INSERT INTO ttipo_modulo VALUES (3,'generic_data_string',2,'Generic string','mod_string.png');
|
||||
INSERT INTO ttipo_modulo VALUES (4,'generic_data_inc',0,'Generic numeric incremental','mod_data_inc.png');
|
||||
INSERT INTO ttipo_modulo VALUES (4,'generic_data_inc',0,'Generic data incremental','mod_data_inc.png');
|
||||
|
||||
INSERT INTO ttipo_modulo VALUES (6,'remote_icmp_proc',4,'Remote ICMP network agent, boolean data','mod_icmp_proc.png');
|
||||
INSERT INTO ttipo_modulo VALUES (7,'remote_icmp',3,'Remote ICMP network agent (latency)','mod_icmp_data.png');
|
||||
|
|
|
@ -223,10 +223,10 @@ INSERT INTO "torigen" VALUES
|
|||
--
|
||||
-- Identifiers 30 and 31 are reserved for Enterprise data types
|
||||
INSERT INTO "ttipo_modulo" VALUES
|
||||
(1,'generic_data',0,'Generic numeric','mod_data.png'),
|
||||
(1,'generic_data',0,'Generic data','mod_data.png'),
|
||||
(2,'generic_proc',1,'Generic boolean','mod_proc.png'),
|
||||
(3,'generic_data_string',2,'Generic string','mod_string.png'),
|
||||
(4,'generic_data_inc',0,'Generic numeric incremental','mod_data_inc.png'),
|
||||
(4,'generic_data_inc',0,'Generic data incremental','mod_data_inc.png'),
|
||||
|
||||
(6,'remote_icmp_proc',4,'Remote ICMP network agent, boolean data','mod_icmp_proc.png'),
|
||||
(7,'remote_icmp',3,'Remote ICMP network agent (latency)','mod_icmp_data.png'),
|
||||
|
|
|
@ -229,10 +229,10 @@ INSERT INTO `torigen` VALUES
|
|||
|
||||
-- Identifiers 30 and 31 are reserved for Enterprise data types
|
||||
INSERT INTO `ttipo_modulo` VALUES
|
||||
(1,'generic_data',0,'Generic numeric','mod_data.png'),
|
||||
(1,'generic_data',0,'Generic data','mod_data.png'),
|
||||
(2,'generic_proc',1,'Generic boolean','mod_proc.png'),
|
||||
(3,'generic_data_string',2,'Generic string','mod_string.png'),
|
||||
(4,'generic_data_inc',0,'Generic numeric incremental','mod_data_inc.png'),
|
||||
(4,'generic_data_inc',0,'Generic data incremental','mod_data_inc.png'),
|
||||
|
||||
(6,'remote_icmp_proc',4,'Remote ICMP network agent, boolean data','mod_icmp_proc.png'),
|
||||
(7,'remote_icmp',3,'Remote ICMP network agent (latency)','mod_icmp_data.png'),
|
||||
|
|
Loading…
Reference in New Issue