You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
1002 B

  1. # 2022-04-09 14:57
  2. ALTER TABLE `lanzu_order_main`
  3. CHANGE COLUMN `shipping_type` `shipping_type` TINYINT(1) NOT NULL DEFAULT '1' COMMENT '配送方式:1服务站配送,2达达配送,3自提,4顺丰配送' AFTER `global_order_id`,
  4. CHANGE COLUMN `delivery_time_note` `delivery_time_note` VARCHAR(100) NULL DEFAULT '' COMMENT '客户期望送达时间' COLLATE 'utf8mb4_general_ci' AFTER `shipping_name`;
  5. # 2022-04-11 23:50
  6. ALTER TABLE `lanzu_goods`
  7. ADD COLUMN `weight` INT(11) NOT NULL DEFAULT '0' COMMENT '产品毛重,用于计算顺丰运费' AFTER `goods_unit`;
  8. ALTER TABLE `lanzu_goods_activity`
  9. ADD COLUMN `weight` INT(11) NOT NULL DEFAULT '0' COMMENT '产品毛重,用于计算顺丰运费' AFTER `goods_unit`;
  10. # 2022-04-17 23:41
  11. ALTER TABLE `lanzu_order_goods`
  12. ADD COLUMN `weight` INT NULL DEFAULT 0 COMMENT '一件商品的重量(多个需要*number),单位:克' AFTER `note`;
  13. # 顺丰订单记录
  14. create table `lanzu_sf_express_orders`;