Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
sxu 2024-10-17 14:54:38 +08:00
commit 49393eb569
1 changed files with 4 additions and 1 deletions

View File

@ -1,2 +1,5 @@
ALTER TABLE `service_order`.`order_item_sku` ALTER TABLE `service_order`.`order_item_sku`
ADD COLUMN `push_notifications` int NULL COMMENT '推送状态 0未推送1推送到仓储 2推送到智慧工程' AFTER `renewal_receipt_price`; ADD COLUMN `push_notifications` int NULL COMMENT '推送状态 0未推送1推送到仓储 2推送到智慧工程' AFTER `renewal_receipt_price`;
ALTER TABLE `service_order`.`order_item_sku`
MODIFY COLUMN `push_notifications` int(11) NULL DEFAULT 0 COMMENT '推送状态 0未推送1推送到仓储 2推送到智慧工程' AFTER `renewal_receipt_price`;