This commit is contained in:
aozhiwei 2023-08-23 13:26:07 +08:00
parent f4c2b56225
commit 3b7548ca86
2 changed files with 5 additions and 2 deletions

View File

@ -1198,7 +1198,7 @@ CREATE TABLE `t_bc_order` (
`order_type` int(11) NOT NULL COMMENT '0:默认',
`account_id` varchar(60) NOT NULL COMMENT '账户id 只用做事后分析用',
`address` varchar(60) COMMENT 'address',
`currency_name` varchar(60) NOT NULL COMMENT 'currency_name',
`currency_name` varchar(60) NOT NULL DEFAULT '' COMMENT 'currency_name',
`status` int(11) NOT NULL DEFAULT '0' COMMENT '0: 支付中 1 已发货',
`item_id` int(11) NOT NULL COMMENT '道具id',
`item_num` bigint NOT NULL DEFAULT '0' COMMENT '道具数量',
@ -1392,6 +1392,7 @@ CREATE TABLE `t_mall` (
`seller_address` varchar(60) NOT NULL DEFAULT '' COMMENT 'seller_address',
`item_id` int(11) NOT NULL DEFAULT '0' COMMENT '物品id',
`item_num` bigint NOT NULL DEFAULT '0' COMMENT '物品数量',
`currency_name` varchar(60) NOT NULL DEFAULT '' COMMENT 'currency_name',
`currency` varchar(60) NOT NULL COMMENT 'currency',
`price` varchar(255) NOT NULL DEFAULT '' COMMENT 'price',
`status` int(11) NOT NULL DEFAULT '0' COMMENT 'status',

View File

@ -71,7 +71,9 @@ CREATE TABLE `t_hash_rate_reward` (
KEY `account_id` (`account_id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
alter table t_bc_order add column `currency_name` varchar(60) NOT NULL COMMENT 'currency_name';
alter table t_bc_order add column `currency_name` varchar(60) NOT NULL DEFAULT '' COMMENT 'currency_name';
alter table t_mall add column `currency_name` varchar(60) NOT NULL DEFAULT '' COMMENT 'currency_name';
insert into version (version) values(2023081601);