]> de.git.xonotic.org Git - xonotic/xonstatdb.git/blob - tables/summary_stats.tab
Initial version of the player_game_frag_matrix table.
[xonotic/xonstatdb.git] / tables / summary_stats.tab
1 CREATE TABLE xonstat.summary_stats
2 (
3   summary_stats_id bigserial NOT NULL,
4   total_players bigint NOT NULL,
5   total_servers bigint NOT NULL,
6   total_games bigint NOT NULL,
7   total_dm_games bigint NOT NULL,
8   total_duel_games bigint NOT NULL,
9   total_ctf_games bigint NOT NULL,
10   create_dt timestamp without time zone NOT NULL DEFAULT (current_timestamp at time zone 'UTC'),
11   CONSTRAINT summary_stats_pk PRIMARY KEY (summary_stats_id)
12 )
13 WITH (
14   OIDS=FALSE
15 );
16
17 ALTER TABLE xonstat.summary_stats OWNER TO xonstat;