update_241107.sql 1.1 KB

1234567891011121314151617
  1. -- 新增公共配置
  2. INSERT INTO `tcwm2.5`.`common_info` (`id`, `create_at`, `max`, `min`, `type`, `value`, `condition_from`) VALUES (433, '2024-10-17 10:48:43', NULL, '是否开启新支付', 433, '1', 'weixin');
  3. INSERT INTO `tcwm2.5`.`common_info` (`id`, `create_at`, `max`, `min`, `type`, `value`, `condition_from`) VALUES (434, '2024-10-17 10:48:43', NULL, '微信支付RHT商户号', 434, '866360132440001', 'weixin');
  4. INSERT INTO `tcwm2.5`.`common_info` (`id`, `create_at`, `max`, `min`, `type`, `value`, `condition_from`) VALUES (435, '2024-10-17 10:48:43', NULL, '微信支付RHT商户密钥', 435, 'B9591F61B1944A93938DD3DFA9070763', 'weixin');
  5. /* --------------- 修改表 --------------- */
  6. -- 修改表:goods_shop[店铺信息]
  7. -- 添加字段:
  8. ALTER TABLE goods_shop
  9. ADD COLUMN `mch_id` VARCHAR(32) COMMENT '商户id;' AFTER reservation_open_flag;
  10. /* --------------- 修改表 --------------- */
  11. -- 修改表:user_money_details[]
  12. -- 添加字段:
  13. ALTER TABLE user_money_details
  14. ADD COLUMN `remark` VARCHAR(32) COMMENT '备注信息;' AFTER children_id;