2007-03-19 Raul Mateos <raulofpandora@gmail.com>
* pandoradb.sql, pandoradb_data.sql: Solve small problem in last commit with groups table and language code for more than 5 chars (as ast_es). git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@399 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
8b1eb59073
commit
fadf63374f
|
@ -1,3 +1,8 @@
|
|||
2007-03-19 Raul Mateos <raulofpandora@gmail.com>
|
||||
|
||||
* pandoradb.sql, pandoradb_data.sql: Solve small problem in last commit
|
||||
with groups table and language code for more than 5 chars (as ast_es).
|
||||
|
||||
2007-03-19 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* functions_db.php: Added give_network_profile_name() function.
|
||||
|
@ -63,7 +68,6 @@
|
|||
|
||||
* include/styles/menu.css: Small colour change in menu border.
|
||||
|
||||
>>>>>>> .r393
|
||||
2007-03-06 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* include/functions*.php: Some reorganization, moved some funtions
|
||||
|
|
|
@ -412,7 +412,7 @@ CREATE TABLE `tincidencia` (
|
|||
|
||||
DROP TABLE IF EXISTS `tlanguage`;
|
||||
CREATE TABLE `tlanguage` (
|
||||
`id_language` varchar(5) NOT NULL default '',
|
||||
`id_language` varchar(6) NOT NULL default '',
|
||||
`name` varchar(100) NOT NULL default '',
|
||||
PRIMARY KEY (`id_language`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
|
|
|
@ -69,15 +69,15 @@ INSERT INTO `tconfig_os` VALUES (11,'Network','Pandora Network Agent','network.g
|
|||
-- Dumping data for table `tgrupo`
|
||||
--
|
||||
|
||||
INSERT INTO `tgrupo` VALUES (1,'All','world');
|
||||
INSERT INTO `tgrupo` VALUES (2,'Servers','server_database');
|
||||
INSERT INTO `tgrupo` VALUES (3,'IDS','eye');
|
||||
INSERT INTO `tgrupo` VALUES (4,'Firewalls','firewal');
|
||||
INSERT INTO `tgrupo` VALUES (8,'Databases','db');
|
||||
INSERT INTO `tgrupo` VALUES (9,'Comms','comms');
|
||||
INSERT INTO `tgrupo` VALUES (10,'Others','others');
|
||||
INSERT INTO `tgrupo` VALUES (11,'Workstations','workstation');
|
||||
INSERT INTO `tgrupo` VALUES (12,'Applications','apps');
|
||||
INSERT INTO `tgrupo` VALUES (1,'All','world',0);
|
||||
INSERT INTO `tgrupo` VALUES (2,'Servers','server_database',0);
|
||||
INSERT INTO `tgrupo` VALUES (3,'IDS','eye',0);
|
||||
INSERT INTO `tgrupo` VALUES (4,'Firewalls','firewal',0);
|
||||
INSERT INTO `tgrupo` VALUES (8,'Databases','db',0);
|
||||
INSERT INTO `tgrupo` VALUES (9,'Comms','comms',0);
|
||||
INSERT INTO `tgrupo` VALUES (10,'Others','others',0);
|
||||
INSERT INTO `tgrupo` VALUES (11,'Workstations','workstation',0);
|
||||
INSERT INTO `tgrupo` VALUES (12,'Applications','apps',0);
|
||||
|
||||
--
|
||||
-- Dumping data for table `tlink`
|
||||
|
|
Loading…
Reference in New Issue