game2004api/sql/gamedb2004_n_migrate_200408_01.sql
aozhiwei 429627c794 1
2020-04-08 19:28:42 +08:00

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;