记得上下班打卡 | git大法好,push需谨慎

Commit 8762fdff authored by 张国柄's avatar 张国柄

~sql:补充缺失表结构创建SQL;

parent 2f08cac3
...@@ -1188,7 +1188,16 @@ create table goblin_nft_transfer_order ...@@ -1188,7 +1188,16 @@ create table goblin_nft_transfer_order
comment varchar(500) comment varchar(500)
) engine = InnoDB comment '藏品转赠订单记录'; ) engine = InnoDB comment '藏品转赠订单记录';
create unique index uidx_gnto_order_id on goblin_nft_transfer_order (order_id); create unique index uidx_gnto_order_id on goblin_nft_transfer_order (order_id);
# -- >>------------------------------------------------------------------------------------ # -- >>------------------------------------------------------------------------------------ |20221101补充缺失SQL(生产环境已存在表结构)
create table goblin_goods_anticipate_mix
(
mid varchar(255) not null primary key,
uid varchar(255) not null comment '用户uid',
phone varchar(255) not null comment '用户手机号',
mix_id varchar(255) not null comment 'mix id',
state int(1) default 0 not null comment '状态(0:正常(默认))',
created_date datetime null comment '创建时间'
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci comment '用户mix预约记录';
# -- >>------------------------------------------------------------------------------------ # -- >>------------------------------------------------------------------------------------
# -- >>------------------------------------------------------------------------------------ # -- >>------------------------------------------------------------------------------------
# -- >>------------------------------------------------------------------------------------ # -- >>------------------------------------------------------------------------------------
......
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