Commit b1b1b70d authored by 332784038@qq.com's avatar 332784038@qq.com

新增字段sql脚本

parent adb1330c
-- 客户编号冗余到收发货人表
alter table `ecw_order_consignor`
add column `customer_number` VARCHAR(50) DEFAULT NULL COMMENT '客户编号';
alter table `ecw_order_consignee`
add column `customer_number` VARCHAR(50) DEFAULT NULL COMMENT '客户编号';
-- 提货相关数据冗余到订单表
alter table `ecw_order`
add column `pick_state` tinyint DEFAULT 0 COMMENT '提货状态:0 未提货 1 部分提货 2 已提货';
alter table `ecw_order`
add column `pick_ratio` VARCHAR(50) DEFAULT '0' COMMENT '提货率';
alter table `ecw_order`
add column `pick_num` int DEFAULT 0 COMMENT '提货箱数';
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment