bug fixes
This commit is contained in:
parent
ddfd441577
commit
0de13c9dd4
6 changed files with 19 additions and 9 deletions
|
|
@ -126,11 +126,9 @@ WebGUI::SQL->write("alter table Product_specification add assetId varchar(22) no
|
|||
WebGUI::SQL->write("alter table Product_accessory drop primary key");
|
||||
WebGUI::SQL->write("alter table Product_accessory add assetId varchar(22) not null");
|
||||
WebGUI::SQL->write("alter table Product_accessory add accessoryAssetId varchar(22) not null");
|
||||
WebGUI::SQL->write("alter table Product_accessory add primary key (assetId,accessoryAssetId)");
|
||||
WebGUI::SQL->write("alter table Product_related drop primary key");
|
||||
WebGUI::SQL->write("alter table Product_related add assetId varchar(22) not null");
|
||||
WebGUI::SQL->write("alter table Product_related add relatedAssetId varchar(22) not null");
|
||||
WebGUI::SQL->write("alter table Product_related add primary key (assetId,relatedAssetId)");
|
||||
WebGUI::SQL->write("alter table WobjectProxy add column description mediumtext");
|
||||
WebGUI::SQL->write("alter table EventsCalendar change column isMaster scope integer not null default 0");
|
||||
WebGUI::SQL->write("alter table EventsCalendar_event add column eventLocation text");
|
||||
|
|
@ -248,6 +246,8 @@ WebGUI::SQL->write("alter table DataForm_entry drop column wobjectId");
|
|||
WebGUI::SQL->write("alter table DataForm_entryData drop column wobjectId");
|
||||
WebGUI::SQL->write("alter table DataForm_field drop column wobjectId");
|
||||
WebGUI::SQL->write("alter table DataForm_tab drop column wobjectId");
|
||||
WebGUI::SQL->write("alter table Product_related add primary key (assetId,relatedAssetId)");
|
||||
WebGUI::SQL->write("alter table Product_accessory add primary key (assetId,accessoryAssetId)");
|
||||
WebGUI::SQL->write("alter table Product_accessory drop column wobjectId");
|
||||
WebGUI::SQL->write("alter table Product_benefit drop column wobjectId");
|
||||
WebGUI::SQL->write("alter table Product_feature drop column wobjectId");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue