2012-02-10 Vanessa Gil <vanessa.gil@artica.es>

* pandoradb.sql: Removed default value of 'value' field to
	tconfig table.


git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5550 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
vgilc 2012-02-10 10:38:41 +00:00
parent 4ad083d019
commit 57e5a25504
3 changed files with 11 additions and 3 deletions

View File

@ -1,8 +1,16 @@
2012-02-10 Vanessa Gil <vanessa.gil@artica.es>
* pandoradb.sql: Removed default value of 'value' field to
tconfig table.
2012-02-10 Juan Manuel Ramon <juanmanuel.ramon@artica.es> 2012-02-10 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* operation/snmpconsole/snmp_view.php: Added type in snmp alert view * operation/snmpconsole/snmp_view.php: Added type in snmp alert view
and added None option in trap type filter. and added None option in trap type filter.
2012-02-10 Vanessa Gil <vanessa.gil@artica.es>
* pandoradb.sql: Removed default value of 'value' field to
tconfig table.
2012-02-10 Vanessa Gil <vanessa.gil@artica.es> 2012-02-10 Vanessa Gil <vanessa.gil@artica.es>
* pandoradb.sql * pandoradb.sql
pandoradb.postgreSQL.sql pandoradb.postgreSQL.sql

View File

@ -480,8 +480,8 @@ CREATE OR REPLACE TRIGGER tattachment_inc BEFORE INSERT ON tattachment REFERENCI
CREATE TABLE tconfig ( CREATE TABLE tconfig (
id_config NUMBER(10, 0) NOT NULL PRIMARY KEY, id_config NUMBER(10, 0) NOT NULL PRIMARY KEY,
token VARCHAR2(255) default '', token VARCHAR2(100) default '',
value VARCHAR2(100) default '' value VARCHAR2(255) default ''
); );
CREATE SEQUENCE tconfig_s INCREMENT BY 1 START WITH 1; CREATE SEQUENCE tconfig_s INCREMENT BY 1 START WITH 1;

View File

@ -418,7 +418,7 @@ CREATE TABLE IF NOT EXISTS `tattachment` (
CREATE TABLE IF NOT EXISTS `tconfig` ( CREATE TABLE IF NOT EXISTS `tconfig` (
`id_config` int(10) unsigned NOT NULL auto_increment, `id_config` int(10) unsigned NOT NULL auto_increment,
`token` varchar(100) NOT NULL default '', `token` varchar(100) NOT NULL default '',
`value` text NOT NULL default '', `value` text NOT NULL,
PRIMARY KEY (`id_config`) PRIMARY KEY (`id_config`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=InnoDB DEFAULT CHARSET=utf8;