]> git.xonotic.org Git - xonotic/xonstatdb.git/commitdiff
Remove the trailing comma.
authorAnt Zucaro <azucaro@gmail.com>
Sat, 13 May 2017 12:20:53 +0000 (08:20 -0400)
committerAnt Zucaro <azucaro@gmail.com>
Sat, 13 May 2017 12:20:53 +0000 (08:20 -0400)
tables/player_agg_stats_mv.tab

index 28e58b318b87611f570a9af42baf4ee9cf281294..e2dc8605c28e0a4a95a14c39f7247b8fe21e204c 100755 (executable)
@@ -15,9 +15,9 @@ CREATE TABLE xonstat.player_agg_stats_mv
   pickups integer,
   drops integer,
   carrier_frags integer,
-  alivetime interval,
+  alivetime bigint,
   create_dt timestamp without time zone NOT NULL DEFAULT (current_timestamp at time zone 'UTC'),
-  CONSTRAINT player_agg_stats_mv_pk PRIMARY KEY (player_id, game_type_cd),
+  CONSTRAINT player_agg_stats_mv_pk PRIMARY KEY (player_id, game_type_cd)
 )
 WITH (
   OIDS=FALSE