This commit is contained in:
songliang 2023-06-25 15:44:22 +08:00
parent 933a0c9f5c
commit bbe68a6818
2 changed files with 28 additions and 0 deletions

View File

@ -1228,3 +1228,17 @@ CREATE TABLE `t_shop_dailyselection` (
PRIMARY KEY (`idx`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;
DROP TABLE IF EXISTS `t_shop_free_record`;
CREATE TABLE `t_shop_free_record` (
`idx` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`account_id` varchar(60) NOT NULL COMMENT '账号id',
`shop_id` int(11) NOT NULL COMMENT '商店id',
`id` int(11) NOT NULL COMMENT '货架id',
`goods_id` int(11) NOT NULL COMMENT '道具id',
`goods_num` int(11) NOT NULL COMMENT '道具数量',
`free_type` int(11) NOT NULL COMMENT '免费类型',
`free_num` int(11) NOT NULL COMMENT '免费数量',
`createtime` int(11) NOT NULL COMMENT '创建时间',
PRIMARY KEY (`idx`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;

View File

@ -41,6 +41,20 @@ CREATE TABLE `t_shop_dailyselection` (
PRIMARY KEY (`idx`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
CREATE TABLE `t_shop_free_record` (
`idx` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`account_id` varchar(60) NOT NULL COMMENT '账号id',
`shop_id` int(11) NOT NULL COMMENT '商店id',
`id` int(11) NOT NULL COMMENT '货架id',
`goods_id` int(11) NOT NULL COMMENT '道具id',
`goods_num` int(11) NOT NULL COMMENT '道具数量',
`free_type` int(11) NOT NULL COMMENT '免费类型',
`free_num` int(11) NOT NULL COMMENT '免费数量',
`createtime` int(11) NOT NULL COMMENT '创建时间',
PRIMARY KEY (`idx`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
insert into version (version) values(2023061901);
commit;