17 lines
697 B
PL/PgSQL
17 lines
697 B
PL/PgSQL
begin;
|
|
|
|
CREATE TABLE `t_circuit_battle` (
|
|
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
|
`account_id` varchar(60) NOT NULL DEFAULT '' COMMENT '账号id(channel + "_" + gameid + "_" + openid)',
|
|
`season` int(11) NOT NULL DEFAULT '0' COMMENT '赛季',
|
|
`cumulative_score` int(11) NOT NULL DEFAULT '0' COMMENT '积分',
|
|
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
|
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
|
PRIMARY KEY (`idx`),
|
|
KEY `idx_account_season` (`account_id`, `season`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
|
|
|
insert into version (version) values(2024091501);
|
|
|
|
commit;
|