...
This commit is contained in:
parent
7ddf86cebe
commit
cb9e72345e
@ -1134,8 +1134,8 @@ CREATE TABLE `t_first_topup` (
|
||||
`status1` int(11) NOT NULL DEFAULT '0' COMMENT '领取状态1 0 不能领取 1 可领取状态 2 已领取',
|
||||
`status2` int(11) NOT NULL DEFAULT '0' COMMENT '领取状态2',
|
||||
`status3` int(11) NOT NULL DEFAULT '0' COMMENT '领取状态3',
|
||||
PRIMARY KEY (`idx`,`account_id`) USING BTREE,
|
||||
UNIQUE KEY `account` (`account_id`) USING HASH
|
||||
PRIMARY KEY (`idx`,`account_id`),
|
||||
UNIQUE KEY `account` (`account_id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
@ -1291,7 +1291,7 @@ CREATE TABLE `t_web2_order` (
|
||||
`channel` varchar(64) DEFAULT NULL COMMENT 'google or apple',
|
||||
`out_order_id` varchar(64) DEFAULT NULL COMMENT 'app store order_id',
|
||||
PRIMARY KEY (`idx`),
|
||||
UNIQUE KEY `order_id` (`order_id`) USING HASH,
|
||||
UNIQUE KEY `order_id` (`order_id`),
|
||||
KEY `out_order_id` (`out_order_id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8;
|
||||
|
||||
|
@ -39,7 +39,7 @@ CREATE TABLE `t_web2_order` (
|
||||
`channel` varchar(64) DEFAULT NULL COMMENT 'google or apple',
|
||||
`out_order_id` varchar(64) DEFAULT NULL COMMENT 'app store order_id',
|
||||
PRIMARY KEY (`idx`),
|
||||
UNIQUE KEY `order_id` (`order_id`) USING HASH,
|
||||
UNIQUE KEY `order_id` (`order_id`),
|
||||
KEY `out_order_id` (`out_order_id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8;
|
||||
|
||||
@ -50,8 +50,8 @@ CREATE TABLE `t_first_topup` (
|
||||
`status1` int(11) NOT NULL DEFAULT '0' COMMENT '领取状态1 0 不能领取 1 可领取状态 2 已领取',
|
||||
`status2` int(11) NOT NULL DEFAULT '0' COMMENT '领取状态2',
|
||||
`status3` int(11) NOT NULL DEFAULT '0' COMMENT '领取状态3',
|
||||
PRIMARY KEY (`idx`,`account_id`) USING BTREE,
|
||||
UNIQUE KEY `account` (`account_id`) USING HASH
|
||||
PRIMARY KEY (`idx`,`account_id`),
|
||||
UNIQUE KEY `account` (`account_id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
|
||||
|
||||
insert into version (version) values(2023071001);
|
||||
|
Loading…
x
Reference in New Issue
Block a user