From: Ant Zucaro Date: Tue, 13 Dec 2011 00:45:20 +0000 (-0500) Subject: The match_id is now a varchar. X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=2c42dbc04a7313ab90ad6b88d81e53d2899508d3;p=xonotic%2Fxonstatdb.git The match_id is now a varchar. --- diff --git a/tables/games.tab b/tables/games.tab index a9a5e5a..15c3286 100755 --- a/tables/games.tab +++ b/tables/games.tab @@ -7,7 +7,7 @@ CREATE TABLE xonstat.games map_id integer NOT NULL, duration interval, winner integer, - match_id numeric, + match_id character varying(64), create_dt timestamp without time zone NOT NULL DEFAULT (current_timestamp at time zone 'UTC'), CONSTRAINT games_pk PRIMARY KEY (game_id), CONSTRAINT games_fk001 FOREIGN KEY (game_type_cd)