2011-02-02 Sancho lerena <slerena@artica.es>
* pandoradb.sql: Altered lenght for custom SQL reports. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3795 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
fa73112f55
commit
3bb0cd39db
|
@ -1,3 +1,8 @@
|
||||||
|
2011-02-02 Sancho lerena <slerena@artica.es>
|
||||||
|
|
||||||
|
* pandoradb.sql: Altered lenght for custom SQL reports.
|
||||||
|
|
||||||
|
|
||||||
2011-02-01 Junichi Satoh <junichi@rworks.jp>
|
2011-02-01 Junichi Satoh <junichi@rworks.jp>
|
||||||
|
|
||||||
* include/functions_fsgraph.php: Fixed html entities are displayed
|
* include/functions_fsgraph.php: Fixed html entities are displayed
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
-- Pandora FMS - the Flexible Monitoring System
|
-- Pandora FMS - the Flexible Monitoring System
|
||||||
-- ============================================
|
-- ============================================
|
||||||
-- Copyright (c) 2005-2011 Artica Soluciones Tecnológicas, http://www.artica.es
|
-- Copyright (c) 2005-2010 Artica Soluciones Tecnológicas, http://www.artica.es
|
||||||
-- Please see http://pandora.sourceforge.net for full contribution list
|
-- Please see http://pandora.sourceforge.net for full contribution list
|
||||||
|
|
||||||
-- This program is free software; you can redistribute it and/or
|
-- This program is free software; you can redistribute it and/or
|
||||||
|
@ -430,7 +430,7 @@ CREATE TABLE IF NOT EXISTS `tevento` (
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS `tgrupo` (
|
CREATE TABLE IF NOT EXISTS `tgrupo` (
|
||||||
`id_grupo` mediumint(4) unsigned NOT NULL auto_increment,
|
`id_grupo` mediumint(4) unsigned NOT NULL auto_increment,
|
||||||
`nombre` text NOT NULL default '',
|
`nombre` varchar(100) NOT NULL default '',
|
||||||
`icon` varchar(50) default NULL default 'world',
|
`icon` varchar(50) default NULL default 'world',
|
||||||
`parent` mediumint(4) unsigned NOT NULL default '0',
|
`parent` mediumint(4) unsigned NOT NULL default '0',
|
||||||
`propagate` tinyint(1) unsigned NOT NULL default '0',
|
`propagate` tinyint(1) unsigned NOT NULL default '0',
|
||||||
|
@ -795,7 +795,7 @@ CREATE TABLE IF NOT EXISTS `treport_content` (
|
||||||
`description` mediumtext,
|
`description` mediumtext,
|
||||||
`id_agent` int(10) unsigned NOT NULL default 0,
|
`id_agent` int(10) unsigned NOT NULL default 0,
|
||||||
`text` TEXT default NULL,
|
`text` TEXT default NULL,
|
||||||
`external_source` TinyText default NULL,
|
`external_source` Text default NULL,
|
||||||
`treport_custom_sql_id` INTEGER UNSIGNED default 0,
|
`treport_custom_sql_id` INTEGER UNSIGNED default 0,
|
||||||
`header_definition` TinyText default NULL,
|
`header_definition` TinyText default NULL,
|
||||||
`column_separator` TinyText default NULL,
|
`column_separator` TinyText default NULL,
|
||||||
|
|
Loading…
Reference in New Issue