]> de.git.xonotic.org Git - xonotic/xonstatdb.git/blob - tables/player_ranks_history.tab
Add the ladder code table.
[xonotic/xonstatdb.git] / tables / player_ranks_history.tab
1 CREATE TABLE player_ranks_history
2 (
3   player_id integer NOT NULL,
4   nick character varying(128),
5   game_type_cd character varying(10) NOT NULL,
6   elo numeric NOT NULL,
7   rank integer NOT NULL,
8   create_dt timestamp without time zone
9 )
10 WITH (
11   OIDS=FALSE
12 );
13 ALTER TABLE player_ranks OWNER TO xonstat;