~xibo-maintainers/xibo/tempel

« back to all changes in this revision

Viewing changes to install/steps/129.json

  • Committer: Dan Garner
  • Date: 2015-03-26 14:08:33 UTC
  • Revision ID: git-v1:70d14044444f8dc5d602b99890d59dea46d9470c
Moved web servable files to web folder

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{
2
 
  "dbVersion": 129,
3
 
  "appVersion": "1.8.0-rc2",
4
 
  "steps": [
5
 
    {
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;"
8
 
    },
9
 
    {
10
 
      "step": "Create New Index on Required File Table",
11
 
      "action": "CREATE INDEX requiredfile_displayId_type_index ON requiredfile (displayId, type);"
12
 
    },
13
 
    {
14
 
      "step": "Drop player caches",
15
 
      "type": "php",
16
 
      "action": "Xibo\\Upgrade\\DropPlayerCache"
17
 
    },
18
 
    {
19
 
      "step": "Add owner to Resolution",
20
 
      "action": "ALTER TABLE `resolution` ADD userId INT NOT NULL;"
21
 
    },
22
 
    {
23
 
      "step": "Set owner of existing resolutions to 0",
24
 
      "action": "UPDATE `resolution` SET userId = 0;"
25
 
    },
26
 
    {
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');"
29
 
    },
30
 
    {
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 ;"
33
 
    },
34
 
    {
35
 
      "step": "Add display timezone",
36
 
      "action": "ALTER TABLE `display` ADD timeZone VARCHAR(254) NULL;"
37
 
    }
38
 
  ]
39
 
}
 
 
b'\\ No newline at end of file'