// Fix shipping cost for virtual products
This commit is contained in:
@@ -1214,6 +1214,7 @@ CREATE TABLE `PREFIX_product` (
|
||||
`indexed` tinyint(1) NOT NULL default '0',
|
||||
`cache_is_pack` tinyint(1) NOT NULL default '0',
|
||||
`cache_has_attachments` tinyint(1) NOT NULL default '0',
|
||||
`is_virtual` tinyint(1) NOT NULL default '0',
|
||||
`cache_default_attribute` int(10) unsigned default NULL,
|
||||
`date_add` datetime NOT NULL,
|
||||
`date_upd` datetime NOT NULL,
|
||||
|
||||
@@ -173,4 +173,6 @@ CREATE TABLE IF NOT EXISTS `PREFIX_request_sql` (
|
||||
|
||||
|
||||
ALTER TABLE `PREFIX_carrier` ADD COLUMN `id_reference` int(10) NOT NULL AFTER `id_carrier`;
|
||||
UPDATE `PREFIX_carrier` SET id_reference = id_carrier;
|
||||
UPDATE `PREFIX_carrier` SET id_reference = id_carrier;
|
||||
|
||||
ALTER TABLE `PREFIX_product` ADD `is_virtual` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `cache_has_attachments`
|
||||
Reference in New Issue
Block a user