13 lines
582 B
PL/PgSQL
13 lines
582 B
PL/PgSQL
begin;
|
|
|
|
alter table user add column `season_games` int(11) NOT NULL DEFAULT '0' COMMENT '赛季场次总数';
|
|
alter table user add column `season_win` int(11) NOT NULL DEFAULT '0' COMMENT '赛季胜利场次';
|
|
alter table user add column `sea_max_kill` int(11) NOT NULL DEFAULT '0' COMMENT '赛季最高击杀';
|
|
alter table user add column `sea_max_hart` int(11) NOT NULL DEFAULT '0' COMMENT '赛季最高伤害';
|
|
alter table user add column `sea_avg_kill` int(11) NOT NULL DEFAULT '0' COMMENT '赛季场均淘汰';
|
|
|
|
|
|
insert into version (version) values(20200408);
|
|
|
|
commit;
|