From b1273951384b67b701eb8218229f8c173451763e Mon Sep 17 00:00:00 2001 From: zarzuelo Date: Tue, 9 Oct 2012 16:08:18 +0000 Subject: [PATCH] 2012-10-09 Sergio Martin * pandoradb.sql: Added tevent_response to creation schemma git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7059 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/pandoradb.sql | 17 +++++++++++++++++ 2 files changed, 22 insertions(+) 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;