]> git.xonotic.org Git - xonotic/xonstatdb.git/blob - tables/active_servers_mv.tab
28fcb6d8f27647afa20adf496b8be1e13604561f
[xonotic/xonstatdb.git] / tables / active_servers_mv.tab
1 create table active_servers_mv(
2         sort_order integer,
3         server_id bigint,
4         server_name character varying(128),
5         games integer,
6         create_dt timestamp without time zone default (now() at time zone 'UTC')
7 );
8
9 ALTER TABLE xonstat.active_servers_mv OWNER TO xonstat;