2011-02-07 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql: cleaned source code. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3802 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
e9a305f624
commit
891fcbf9ff
|
@ -1,3 +1,7 @@
|
||||||
|
2011-02-07 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
|
* pandoradb.sql: cleaned source code.
|
||||||
|
|
||||||
2011-02-07 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
2011-02-07 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
* extensions/update_manager.php
|
* extensions/update_manager.php
|
||||||
|
|
|
@ -866,12 +866,12 @@ CREATE TABLE IF NOT EXISTS `tlayout_data` (
|
||||||
PRIMARY KEY(`id`)
|
PRIMARY KEY(`id`)
|
||||||
) ENGINE = InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE = InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS tplugin (
|
CREATE TABLE IF NOT EXISTS `tplugin` (
|
||||||
`id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
|
`id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||||
`name` varchar(200) NOT NULL,
|
`name` varchar(200) NOT NULL,
|
||||||
`description` mediumtext,
|
`description` mediumtext,
|
||||||
`max_timeout` int(4) UNSIGNED NOT NULL default 0,
|
`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_dst_opt` varchar(50) default '',
|
||||||
`net_port_opt` varchar(50) default '',
|
`net_port_opt` varchar(50) default '',
|
||||||
`user_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',
|
`port` int(4) unsigned default '0',
|
||||||
`directory` varchar(100) NOT NULL default '',
|
`directory` varchar(100) NOT NULL default '',
|
||||||
`options` 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`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
-- id_export_server is real pandora fms export server process that manages this server
|
-- id_export_server is real pandora fms export server process that manages this server
|
||||||
-- id is the "destination" server to export
|
-- id is the "destination" server to export
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS `tserver_export_data` (
|
CREATE TABLE IF NOT EXISTS `tserver_export_data` (
|
||||||
`id` int(20) unsigned NOT NULL auto_increment,
|
`id` int(20) unsigned NOT NULL auto_increment,
|
||||||
`id_export_server` int(10) unsigned default NULL,
|
`id_export_server` int(10) unsigned default NULL,
|
||||||
|
|
Loading…
Reference in New Issue