|
@@ -1,4 +1,4 @@
|
|
|
-create table merch_noti
|
|
|
+create table `kmall-haikong`.merch_noti
|
|
|
(
|
|
|
noti_sn varchar(22) not null comment '通知编号'
|
|
|
primary key,
|
|
@@ -29,7 +29,8 @@ create table merch_noti
|
|
|
create_time varchar(32) null comment '创建时间,yyyy-MM-dd HH:mm:ss',
|
|
|
moder_sn varchar(22) null comment '修改人编号',
|
|
|
mod_time varchar(32) null comment '修改时间,yyyy-MM-dd HH:mm:ss',
|
|
|
- tstm timestamp default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP comment '时间戳'
|
|
|
+ tstm timestamp default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP comment '时间戳',
|
|
|
+ order_sn varchar(32) null comment '订单号'
|
|
|
)
|
|
|
comment '商户通知,通知编号:支付订单号=1:n' charset = utf8;
|
|
|
|