]> de.git.xonotic.org Git - xonotic/xonstatdb.git/blobdiff - tables/player_weapon_stats.tab
Change game type codes to match new gametypes abbreviations.
[xonotic/xonstatdb.git] / tables / player_weapon_stats.tab
index 23d6a64fc0a79ca9f04026ff2123788d1dc6d330..60954bbff423ff3014adab4fdb37e418ab8a98c1 100644 (file)
@@ -3,13 +3,14 @@ CREATE TABLE xonstat.player_weapon_stats
   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,
-  hit integer NOT NULL,
-  fired integer NOT NULL,
-  frags integer NOT NULL,
-  create_dt timestamp without time zone NOT NULL DEFAULT now(),
+  player_game_stat_id bigint NOT NULL,
+  weapon_cd character varying(15) NOT NULL,
+  actual integer NOT NULL default 0,
+  max integer NOT NULL default 0,
+  hit integer NOT NULL default 0,
+  fired integer NOT NULL default 0,
+  frags integer NOT NULL default 0,
+  create_dt timestamp without time zone NOT NULL DEFAULT (current_timestamp at time zone 'UTC'),
   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
@@ -20,7 +21,9 @@ CREATE TABLE xonstat.player_weapon_stats
   CONSTRAINT player_weapon_stats_fk003 FOREIGN KEY (weapon_cd)
       REFERENCES xonstat.cd_weapon (weapon_cd) MATCH SIMPLE
       ON UPDATE NO ACTION ON DELETE NO ACTION,
-  CONSTRAINT player_weapon_stats_uk001 UNIQUE (player_id, game_id, weapon_cd)
+  CONSTRAINT player_weapon_stats_fk004 FOREIGN KEY (player_game_stat_id)
+      REFERENCES xonstat.player_game_stats (player_game_stat_id) MATCH SIMPLE
+      ON UPDATE NO ACTION ON DELETE NO ACTION
 )
 WITH (
   OIDS=FALSE