From: Ant Zucaro Date: Tue, 9 Jun 2015 21:42:37 +0000 (-0400) Subject: Add the mod name to the captimes table to somewhat distinguish different methods... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=d9ab576c9d7de2afa07a8a36b215c465fd0b6102;p=xonotic%2Fxonstatdb.git Add the mod name to the captimes table to somewhat distinguish different methods of capping. --- diff --git a/tables/player_map_captimes.tab b/tables/player_map_captimes.tab index c9960a3..4472a23 100644 --- a/tables/player_map_captimes.tab +++ b/tables/player_map_captimes.tab @@ -5,6 +5,7 @@ CREATE TABLE xonstat.player_map_captimes map_id integer NOT NULL, game_id bigint NOT NULL, fastest_cap interval NOT NULL, + mod character varying(30), create_dt timestamp without time zone NOT NULL DEFAULT (current_timestamp at time zone 'UTC'), CONSTRAINT player_map_captimes_pk PRIMARY KEY (player_map_captime_id), CONSTRAINT player_map_captimes_uk01 UNIQUE (player_id, map_id),