]> de.git.xonotic.org Git - xonotic/xonstatdb.git/blob - tables/active_players_mv.tab
Add a script to refresh active servers.
[xonotic/xonstatdb.git] / tables / active_players_mv.tab
1 create table active_players_mv(
2         sort_order integer,
3         player_id bigint,
4         nick character varying(128),
5         alivetime interval,
6         create_dt timestamp without time zone default (now() at time zone 'UTC')
7 );
8
9 ALTER TABLE xonstat.active_players_mv OWNER TO xonstat;