]> de.git.xonotic.org Git - xonotic/xonstatdb.git/blob - tables/player_ranks_history.tab
Initial version of the player_game_frag_matrix 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   category character varying(10) NOT NULL default 'general',
7   elo numeric NOT NULL,
8   rank integer NOT NULL,
9   create_dt timestamp without time zone
10 )
11 WITH (
12   OIDS=FALSE
13 );
14 ALTER TABLE player_ranks OWNER TO xonstat;