Change pandoradb treport_content_template and treport_content fields - #654

This commit is contained in:
enriquecd 2017-10-30 17:01:44 +01:00
parent 2da1e57dc1
commit 96b3ebc67a
1 changed files with 2 additions and 2 deletions

View File

@ -1272,7 +1272,7 @@ CREATE TABLE IF NOT EXISTS `treport_content` (
`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`),
FOREIGN KEY (`id_report`) REFERENCES treport(`id_report`)
ON UPDATE CASCADE ON DELETE CASCADE
@ -2732,7 +2732,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;