From: Ant Zucaro Date: Sun, 17 Jan 2021 19:33:29 +0000 (-0500) Subject: Add a new table for player skills. X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=a02b84deae182611469c46b4f0cecca23a242fec;p=xonotic%2Fxonstatdb.git Add a new table for player skills. --- diff --git a/build/build_full.sql b/build/build_full.sql index a9072c4..d74adfc 100755 --- a/build/build_full.sql +++ b/build/build_full.sql @@ -1,4 +1,5 @@ -- drop tables first in reverse order +drop table if exists player_skills; drop table if exists player_game_nonparticipants; drop table if exists player_game_frag_matrix; drop table if exists player_agg_stats_mv; @@ -71,6 +72,7 @@ drop table if exists players cascade; \i tables/player_agg_stats_mv.tab \i tables/player_game_frag_matrix.tab \i tables/player_game_nonparticipants.tab +\i tables/player_skills.tab begin; diff --git a/tables/player_skills.tab b/tables/player_skills.tab new file mode 100644 index 0000000..45d9f87 --- /dev/null +++ b/tables/player_skills.tab @@ -0,0 +1,21 @@ +CREATE TABLE xonstat.player_skills +( + player_id integer NOT NULL, + game_type_cd character varying(10) NOT NULL, + mu numeric NOT NULL, + sigma numeric NOT NULL, + active_ind boolean NOT NULL default true, + create_dt timestamp without time zone NOT NULL DEFAULT (current_timestamp at time zone 'UTC'), + update_dt timestamp without time zone NOT NULL DEFAULT (current_timestamp at time zone 'UTC'), + CONSTRAINT player_skills_pk PRIMARY KEY (player_id, game_type_cd), + CONSTRAINT player_skills_fk01 FOREIGN KEY (player_id) + REFERENCES xonstat.players (player_id) MATCH SIMPLE + ON UPDATE NO ACTION ON DELETE NO ACTION, + CONSTRAINT player_skills_fk02 FOREIGN KEY (game_type_cd) + REFERENCES xonstat.cd_game_type (game_type_cd) MATCH SIMPLE + ON UPDATE NO ACTION ON DELETE NO ACTION +) +WITH ( + OIDS=FALSE +); +ALTER TABLE xonstat.player_skills OWNER TO xonstat;