fix - [ 1212596 ] Field disableContentLock is missing in Shortcut table

This commit is contained in:
Roy Johnson 2005-06-04 22:43:22 +00:00
parent d0d7112623
commit 5c2ce93a86
3 changed files with 3 additions and 0 deletions

View file

@ -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.

View file

@ -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;

View file

@ -1 +1,2 @@
insert into webguiVersion values ('6.6.2','upgrade',unix_timestamp());
alter table Shortcut add disableContentLock int(11) NOT NULL default '0';