]> git.xonotic.org Git - xonotic/xonstatdb.git/blob - tables/summary_stats.tab
8e20da9500c1817dc29218f2271dfcd625602571
[xonotic/xonstatdb.git] / tables / summary_stats.tab
1 CREATE TABLE xonstat.summary_stats
2 (
3   total_players bigint NOT NULL,
4   total_servers bigint NOT NULL,
5   total_games bigint NOT NULL,
6   total_dm_games bigint NOT NULL,
7   total_duel_games bigint NOT NULL,
8   total_ctf_games bigint NOT NULL,
9   create_dt timestamp without time zone NOT NULL DEFAULT (current_timestamp at time zone 'UTC')
10 )
11 WITH (
12   OIDS=FALSE
13 );
14
15 ALTER TABLE xonstat.summary_stats OWNER TO xonstat;