edit-api-licheb-opt

This commit is contained in:
lccsw
2021-08-10 09:51:58 +08:00
parent 10c4399ae2
commit fb40d1535f
63 changed files with 3314 additions and 321 deletions
+2 -2
View File
@@ -3,7 +3,7 @@
-- Author:lcc
-- Table:lc_order_purchase
-- ---------------------------
drop table if exists hd_order_purchase;
drop table if exists lc_order_purchase;
create table lc_order_purchase (
id int(10) unsigned not null auto_increment,
app_id int(10) unsigned not null comment '小程序id',
@@ -39,7 +39,7 @@ create table lc_order_purchase (
key idx_user_order (app_id,app_uid,status),
key idx_sid (sid)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='消费订单表';
alter table lc_order_purchase add mch_id varchar(30) not null default '' comment '支付商户号' after sid;
-- ----------------------------
-- Title:订单总表