Files
elcaribe/desarrollo2/sqlupdates/v24.sql
2023-08-23 17:33:44 -04:00

10 lines
394 B
SQL

ALTER TABLE `products` CHANGE `brand_id` `brand_id` INT(11) NULL DEFAULT NULL;
ALTER TABLE `products` CHANGE `subsubcategory_id` `subsubcategory_id` INT(11) NULL DEFAULT NULL;
ALTER TABLE `orders` ADD `commission_calculated` INT NOT NULL DEFAULT '0' AFTER `payment_status_viewed`;
UPDATE `business_settings` SET `value` = '2.4' WHERE `business_settings`.`type` = 'current_version';
COMMIT;