2009-02-11 Sancho Lerena <slerena@artica.es>
* pandoradb_migrate_20_to_21.sql: Fixed typo. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1444 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
e94a8f0fcf
commit
1305f72464
|
@ -1,3 +1,7 @@
|
|||
2009-02-11 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* pandoradb_migrate_20_to_21.sql: Fixed typo.
|
||||
|
||||
2009-02-11 Esteban Sanchez <estebans@artica.es>
|
||||
|
||||
* general/main_menu.php, include/styles/menu.css: Selected menu style
|
||||
|
|
|
@ -182,6 +182,7 @@ ALTER TABLE `tusuario` CHANGE `direccion` `email` VARCHAR( 100 ) CHARACTER SE
|
|||
ALTER TABLE `tusuario` CHANGE `telefono` `phone` VARCHAR( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL;
|
||||
ALTER TABLE `tusuario` CHANGE `nivel` `is_admin` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0';
|
||||
|
||||
DROP TABLE IF EXISTS talert_compound;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `talert_compound` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
|
@ -214,9 +215,11 @@ CREATE TABLE IF NOT EXISTS `talert_compound` (
|
|||
ON DELETE CASCADE ON UPDATE CASCADE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
DROP TABLE IF EXISTS talert_compound_elements;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `talert_compound_elements` (
|
||||
`id_alert_compound` int(10) unsigned NOT NULL,
|
||||
`id_alert_template_module` int(10) unsigned NOT NULL,:w
|
||||
`id_alert_template_module` int(10) unsigned NOT NULL,
|
||||
`operation` enum('NOP', 'AND','OR','XOR','NAND','NOR','NXOR'),
|
||||
`order` tinyint(2) unsigned default 0,
|
||||
UNIQUE (`id_alert_compound`, `id_alert_template_module`, `operation`),
|
||||
|
@ -226,6 +229,9 @@ CREATE TABLE IF NOT EXISTS `talert_compound_elements` (
|
|||
ON DELETE CASCADE ON UPDATE CASCADE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
|
||||
DROP TABLE IF EXISTS talert_compound_actions;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `talert_compound_actions` (
|
||||
`id_alert_compound` int(10) unsigned NOT NULL,
|
||||
`id_alert_action` int(10) unsigned NOT NULL,
|
||||
|
|
Loading…
Reference in New Issue