]> de.git.xonotic.org Git - xonotic/xonstatdb.git/blobdiff - tables/player_weapon_stats.tab
Add plural to alter for map_game_types.
[xonotic/xonstatdb.git] / tables / player_weapon_stats.tab
index 07a8ca5136c48e1e31b89ca5bc43a7ee8dc488cc..1b3dee774252f0a6375bb79025ae8937f0cad475 100644 (file)
@@ -1,13 +1,13 @@
 CREATE TABLE xonstat.player_weapon_stats
 (
-  player_weapon_stats_id serial NOT NULL,
+  player_weapon_stats_id bigserial NOT NULL,
   player_id integer NOT NULL,
   game_id bigint NOT NULL,
   weapon_cd character varying(3) NOT NULL,
   actual integer NOT NULL,
   max integer NOT NULL,
   frags integer NOT NULL,
-  create_dt timestamp with time zone NOT NULL DEFAULT now(),
+  create_dt timestamp without time zone NOT NULL DEFAULT now(),
   CONSTRAINT player_weapon_stats_pk PRIMARY KEY (player_weapon_stats_id),
   CONSTRAINT player_weapon_stats_fk001 FOREIGN KEY (player_id)
       REFERENCES xonstat.players (player_id) MATCH SIMPLE