租赁推送数据到智慧工程和仓储

This commit is contained in:
15856 2024-10-17 14:00:58 +08:00
parent dba1dcb4f0
commit 7596cd95f1
1 changed files with 4 additions and 1 deletions

View File

@ -1,2 +1,5 @@
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`;