fix - [ 1212596 ] Field disableContentLock is missing in Shortcut table
This commit is contained in:
parent
d0d7112623
commit
5c2ce93a86
3 changed files with 3 additions and 0 deletions
|
|
@ -6,6 +6,7 @@
|
||||||
- fix [ 1213524 ] Survey.pm: unable to edit answers
|
- fix [ 1213524 ] Survey.pm: unable to edit answers
|
||||||
- fix [ 1213516 ] Survey.pm: question order=response driven doesn't work
|
- fix [ 1213516 ] Survey.pm: question order=response driven doesn't work
|
||||||
(Thanks to misja1)
|
(Thanks to misja1)
|
||||||
|
- fix [ 1212596 ] Field disableContentLock is missing in Shortcut table
|
||||||
|
|
||||||
6.6.1
|
6.6.1
|
||||||
- Replaced defective confirm checkout commerce template.
|
- Replaced defective confirm checkout commerce template.
|
||||||
|
|
|
||||||
|
|
@ -1625,6 +1625,7 @@ CREATE TABLE Shortcut (
|
||||||
assetId varchar(22) NOT NULL default '',
|
assetId varchar(22) NOT NULL default '',
|
||||||
templateId varchar(22) NOT NULL default '',
|
templateId varchar(22) NOT NULL default '',
|
||||||
shortcutToAssetId varchar(22) NOT NULL default '',
|
shortcutToAssetId varchar(22) NOT NULL default '',
|
||||||
|
disableContentLock int(11) NOT NULL default '0',
|
||||||
PRIMARY KEY (assetId)
|
PRIMARY KEY (assetId)
|
||||||
) TYPE=MyISAM;
|
) TYPE=MyISAM;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
insert into webguiVersion values ('6.6.2','upgrade',unix_timestamp());
|
insert into webguiVersion values ('6.6.2','upgrade',unix_timestamp());
|
||||||
|
alter table Shortcut add disableContentLock int(11) NOT NULL default '0';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue