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:
parent
d0c85e24b2
commit
b127395138
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue