2006-09-16 Raul Mateos <raulofpandora@gmail.com>

* Set all timestamp values in pandoradb.sql file to 0000-00-00 00:00:00

git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@173 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
raulmateos 2006-09-16 16:00:09 +00:00
parent c38d87d605
commit bc4813b017
2 changed files with 5 additions and 6 deletions

View File

@ -1,7 +1,6 @@
2006-09-11 Raul Mateos <raulofpandora@gmail.com>
2006-09-16 Raul Mateos <raulofpandora@gmail.com>
* New pandora_doc directory for documents in docbook format.
Very Beta :-D
* Set all timestamp values in pandoradb.sql file to 0000-00-00 00:00:00
2006-09-11 Raul Mateos <raulofpandora@gmail.com>

View File

@ -135,7 +135,7 @@ CREATE TABLE `talert_snmp` (
`oid` varchar(255) NOT NULL default '',
`time_threshold` int(11) NOT NULL default '0',
`times_fired` int(2) unsigned NOT NULL default '0',
`last_fired` datetime NOT NULL default '2005-01-01 00:00:00',
`last_fired` datetime NOT NULL default '0000-00-00 00:00:00',
`max_alerts` int(11) NOT NULL default '1',
`min_alerts` int(11) NOT NULL default '1',
`internal_counter` int(2) unsigned NOT NULL default '0',
@ -168,7 +168,7 @@ CREATE TABLE `talerta_agente_modulo` (
`dis_max` bigint(12) default NULL,
`dis_min` bigint(12) default NULL,
`time_threshold` int(11) NOT NULL default '0',
`last_fired` datetime NOT NULL default '2001-01-01 00:00:00',
`last_fired` datetime NOT NULL default '0000-00-00 00:00:00',
`max_alerts` int(4) NOT NULL default '1',
`times_fired` int(11) NOT NULL default '0',
`module_type` int(11) NOT NULL default '0',
@ -284,7 +284,7 @@ CREATE TABLE `tmensajes` (
`id_usuario_origen` varchar(100) NOT NULL default '',
`id_usuario_destino` varchar(100) NOT NULL default '',
`mensaje` tinytext NOT NULL,
`timestamp` datetime NOT NULL default '2005-01-01 00:00:00',
`timestamp` datetime NOT NULL default '0000-00-00 00:00:00',
`subject` varchar(255) NOT NULL default '',
`estado` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`id_mensaje`)