map_id bigint,
map_name character varying(128),
games integer,
- create_dt timestamp without time zone default (now() at time zone 'UTC')
+ create_dt timestamp without time zone default (now() at time zone 'UTC'),
+ CONSTRAINT active_maps_mv_pk PRIMARY KEY (sort_order)
);
ALTER TABLE xonstat.active_maps_mv OWNER TO xonstat;
player_id bigint,
nick character varying(128),
alivetime interval,
- create_dt timestamp without time zone default (now() at time zone 'UTC')
+ create_dt timestamp without time zone default (now() at time zone 'UTC'),
+ CONSTRAINT active_players_mv_pk PRIMARY KEY (sort_order)
);
ALTER TABLE xonstat.active_players_mv OWNER TO xonstat;
server_id bigint,
server_name character varying(128),
games integer,
- create_dt timestamp without time zone default (now() at time zone 'UTC')
+ create_dt timestamp without time zone default (now() at time zone 'UTC'),
+ CONSTRAINT active_servers_mv_pk PRIMARY KEY (sort_order)
);
ALTER TABLE xonstat.active_servers_mv OWNER TO xonstat;