From: Ant Zucaro Date: Sat, 13 Jun 2015 13:18:47 +0000 (-0400) Subject: Update the unique key on the player captimes table. X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonstatdb.git;a=commitdiff_plain;h=c8b338a686c3f5a50ae3efff6d5533cf671ea4d3 Update the unique key on the player captimes table. --- diff --git a/tables/player_map_captimes.tab b/tables/player_map_captimes.tab index cdc4afe..422702a 100644 --- a/tables/player_map_captimes.tab +++ b/tables/player_map_captimes.tab @@ -8,7 +8,7 @@ CREATE TABLE xonstat.player_map_captimes mod character varying(64), 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), + CONSTRAINT player_map_captimes_uk01 UNIQUE (player_id, map_id, mod), CONSTRAINT player_map_captimes_fk01 FOREIGN KEY (player_id) REFERENCES xonstat.players (player_id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION,