diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 850e663843..7806457604 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2012-10-09 Sergio Martin + + * pandoradb.sql: Added tevent_response to + creation schemma + 2012-10-09 Sergio Martin * include/functions_events.php diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index d4bff64489..df51d3ec4a 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1613,3 +1613,20 @@ CREATE TABLE IF NOT EXISTS `tpassword_history` ( `date_end` DATETIME NOT NULL DEFAULT 0, PRIMARY KEY (`id_pass`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- --------------------------------------------------------------------- +-- Table `tevent_response` +-- --------------------------------------------------------------------- +CREATE TABLE IF NOT EXISTS `tevent_response` ( + `id` int(10) unsigned NOT NULL auto_increment, + `name` varchar(600) NOT NULL default '', + `description` TEXT NOT NULL, + `target` TEXT NOT NULL, + `type` varchar(60) NOT NULL, + `id_group` MEDIUMINT(4) NOT NULL default 0, + `modal_width` INTEGER NOT NULL DEFAULT 0, + `modal_height` INTEGER NOT NULL DEFAULT 0, + `new_window` TINYINT(4) NOT NULL DEFAULT 0, + `params` TEXT NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8;