3
"appVersion": "1.8.0-rc2",
6
"step": "Create New Required File Table",
7
"action": "CREATE TABLE IF NOT EXISTS `requiredfile` (`rfId` bigint(20) NOT NULL AUTO_INCREMENT,`displayId` int(11) NOT NULL,`type` varchar(1) NOT NULL,`itemId` int(11) DEFAULT NULL,`bytesRequested` bigint(20) NOT NULL,`complete` tinyint(1) DEFAULT 0 NOT NULL,`path` varchar(255) NULL,`size` BIGINT(20) DEFAULT 0 NOT NULL,PRIMARY KEY (`rfId`)) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;"
10
"step": "Create New Index on Required File Table",
11
"action": "CREATE INDEX requiredfile_displayId_type_index ON requiredfile (displayId, type);"
14
"step": "Drop player caches",
16
"action": "Xibo\\Upgrade\\DropPlayerCache"
19
"step": "Add owner to Resolution",
20
"action": "ALTER TABLE `resolution` ADD userId INT NOT NULL;"
23
"step": "Set owner of existing resolutions to 0",
24
"action": "UPDATE `resolution` SET userId = 0;"
27
"step": "Update permissions defaults to include group write / public write options",
28
"action": "UPDATE `setting` SET `options` = 'private|group|group write|public|public write' WHERE setting IN ('MEDIA_DEFAULT', 'LAYOUT_DEFAULT');"
31
"step": "Add new Campaign Tag link table",
32
"action": "CREATE TABLE IF NOT EXISTS `lktagcampaign` (`lkTagCampaignId` int(11) NOT NULL AUTO_INCREMENT,`tagId` int(11) NOT NULL,`campaignId` int(11) NOT NULL,PRIMARY KEY (`lkTagCampaignId`),UNIQUE KEY `tagId` (`tagId`,`campaignId`)) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;"
35
"step": "Add display timezone",
36
"action": "ALTER TABLE `display` ADD timeZone VARCHAR(254) NULL;"
b'\\ No newline at end of file'