From a25c82dc8b564443ab96b38ecf73cf47d7e9e61b Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Mon, 7 Feb 2011 11:34:44 +0000 Subject: [PATCH] 2011-02-07 Miguel de Dios * pandoradb.sql: cleaned source code. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3802 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 4 ++++ pandora_console/pandoradb.sql | 7 +++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index b91eedbf7e..4c6688186e 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,7 @@ +2011-02-07 Miguel de Dios + + * pandoradb.sql: cleaned source code. + 2011-02-07 Juan Manuel Ramon * extensions/update_manager.php diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 4919749916..31698f48ba 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -866,12 +866,12 @@ CREATE TABLE IF NOT EXISTS `tlayout_data` ( PRIMARY KEY(`id`) ) ENGINE = InnoDB DEFAULT CHARSET=utf8; -CREATE TABLE IF NOT EXISTS tplugin ( +CREATE TABLE IF NOT EXISTS `tplugin` ( `id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL, `description` mediumtext, `max_timeout` int(4) UNSIGNED NOT NULL default 0, - `execute`varchar(250) NOT NULL, + `execute` varchar(250) NOT NULL, `net_dst_opt` varchar(50) default '', `net_port_opt` varchar(50) default '', `user_opt` varchar(50) default '', @@ -901,13 +901,12 @@ CREATE TABLE IF NOT EXISTS `tserver_export` ( `port` int(4) unsigned default '0', `directory` varchar(100) NOT NULL default '', `options` varchar(100) NOT NULL default '', - `timezone_offset` TINYINT(2) NULL DEFAULT '0' COMMENT 'Nuber of hours of diference with the server timezone' , + `timezone_offset` TINYINT(2) NULL DEFAULT '0' COMMENT 'Number of hours of diference with the server timezone' , PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- id_export_server is real pandora fms export server process that manages this server -- id is the "destination" server to export - CREATE TABLE IF NOT EXISTS `tserver_export_data` ( `id` int(20) unsigned NOT NULL auto_increment, `id_export_server` int(10) unsigned default NULL,