2012-10-09 Sergio Martin <sergio.martin@artica.es>

* 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
This commit is contained in:
zarzuelo 2012-10-09 16:08:18 +00:00
parent 659ffc0baa
commit eaa5923f30
2 changed files with 22 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2012-10-09 Sergio Martin <sergio.martin@artica.es>
* pandoradb.sql: Added tevent_response to
creation schemma
2012-10-09 Sergio Martin <sergio.martin@artica.es>
* include/functions_events.php

View File

@ -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;