From 5c2ce93a8640f18eaff03b55f313cf4e94831502 Mon Sep 17 00:00:00 2001 From: Roy Johnson Date: Sat, 4 Jun 2005 22:43:22 +0000 Subject: [PATCH] fix - [ 1212596 ] Field disableContentLock is missing in Shortcut table --- docs/changelog/6.x.x.txt | 1 + docs/create.sql | 1 + docs/upgrades/upgrade_6.6.1-6.6.2.sql | 1 + 3 files changed, 3 insertions(+) diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt index f9a267bfa..1bd65598a 100644 --- a/docs/changelog/6.x.x.txt +++ b/docs/changelog/6.x.x.txt @@ -6,6 +6,7 @@ - fix [ 1213524 ] Survey.pm: unable to edit answers - fix [ 1213516 ] Survey.pm: question order=response driven doesn't work (Thanks to misja1) + - fix [ 1212596 ] Field disableContentLock is missing in Shortcut table 6.6.1 - Replaced defective confirm checkout commerce template. diff --git a/docs/create.sql b/docs/create.sql index 3c111cec1..133dd8a20 100644 --- a/docs/create.sql +++ b/docs/create.sql @@ -1625,6 +1625,7 @@ CREATE TABLE Shortcut ( assetId varchar(22) NOT NULL default '', templateId varchar(22) NOT NULL default '', shortcutToAssetId varchar(22) NOT NULL default '', + disableContentLock int(11) NOT NULL default '0', PRIMARY KEY (assetId) ) TYPE=MyISAM; diff --git a/docs/upgrades/upgrade_6.6.1-6.6.2.sql b/docs/upgrades/upgrade_6.6.1-6.6.2.sql index b71e9e6d0..994e0cd60 100644 --- a/docs/upgrades/upgrade_6.6.1-6.6.2.sql +++ b/docs/upgrades/upgrade_6.6.1-6.6.2.sql @@ -1 +1,2 @@ insert into webguiVersion values ('6.6.2','upgrade',unix_timestamp()); +alter table Shortcut add disableContentLock int(11) NOT NULL default '0';