2010-07-16 Sergio Martin <sergio.martin@artica.es>

* pandoradb_data.sql: Fixed the default data inserting the
	new colum of tgrupo "propagate"



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3020 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2010-07-16 12:44:32 +00:00
parent c4a4da83f4
commit f80b1954db
2 changed files with 13 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2010-07-16 Sergio Martin <sergio.martin@artica.es>
* pandoradb_data.sql: Fixed the default data inserting the
new colum of tgrupo "propagate"
2010-07-15 Miguel de Dios <miguel.dedios@artica.es>
* operation/agentes/networkmap.php: fixed the pass to parameters between

View File

@ -103,14 +103,14 @@ UNLOCK TABLES;
LOCK TABLES `tgrupo` WRITE;
INSERT INTO `tgrupo` VALUES
(2,'Servers','server_database',0,0,''),
(4,'Firewalls','firewall',0,0,''),
(8,'Databases','database_gear',0,0,''),
(9,'Network','transmit',0,0,''),
(10,'Unknown','world',0,0,''),
(11,'Workstations','computer',0,0,''),
(12,'Applications','applications',0,0,''),
(13,'Web','world',0,0,'');
(2,'Servers','server_database',0,0,'',0),
(4,'Firewalls','firewall',0,0,'',0),
(8,'Databases','database_gear',0,0,'',0),
(9,'Network','transmit',0,0,'',0),
(10,'Unknown','world',0,0,'',0),
(11,'Workstations','computer',0,0,'',0),
(12,'Applications','applications',0,0,'',0),
(13,'Web','world',0,0,'',0);
UNLOCK TABLES;