Change pandora migrate and add mr8 changes - #654

Conflicts:
	pandora_console/extras/mr/8.sql
This commit is contained in:
enriquecd 2017-10-30 16:30:51 +01:00
parent f608c686b8
commit 2da1e57dc1
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
START TRANSACTION;
ALTER TABLE tusuario ADD COLUMN `time_autorefresh` int(5) unsigned NOT NULL default '30';
ALTER TABLE treport_content ADD COLUMN lapse_calc tinyint(1) default '0';
ALTER TABLE treport_content ADD COLUMN lapse int(11) default '300';
ALTER TABLE treport_content ADD COLUMN visual_format tinyint(1) default '0';
ALTER TABLE treport_content_template ADD COLUMN lapse_calc tinyint(1) default '0';
ALTER TABLE treport_content_template ADD COLUMN lapse int(11) default '300';
ALTER TABLE treport_content_template ADD COLUMN visual_format tinyint(1) default '0';
COMMIT;

View File

@ -727,7 +727,7 @@ CREATE TABLE IF NOT EXISTS `treport_content_template` (
`historical_db` tinyint(1) UNSIGNED NOT NULL default 0,
`lapse_calc` tinyint(1) UNSIGNED NOT NULL default '0',
`lapse` int(11) UNSIGNED NOT NULL default '300',
`visual_format` UNSIGNED NOT NULL tinyint(1) default '0',
`visual_format` tinyint(1) UNSIGNED NOT NULL default '0',
PRIMARY KEY(`id_rc`)
) ENGINE = InnoDB DEFAULT CHARSET=utf8;