]> git.rm.cloudns.org Git - xonotic/xonstatdb.git/commitdiff
Add the Glicko tables to the build. glicko
authorAnt Zucaro <azucaro@gmail.com>
Tue, 19 Dec 2017 19:00:59 +0000 (14:00 -0500)
committerAnt Zucaro <azucaro@gmail.com>
Tue, 19 Dec 2017 19:00:59 +0000 (14:00 -0500)
build/build_full.sql

index e34cbb7d88f24d8e64d89dc92d413d48d0e1b1eb..2e17564aa328fa4561016f873bd6f9a01de90ea2 100755 (executable)
@@ -1,4 +1,7 @@
 -- drop tables first in reverse order
+drop table if exists player_glickos_queue;
+drop table if exists player_glickos_base;
+drop table if exists player_glickos_current;
 drop table if exists player_game_frag_matrix;
 drop table if exists player_agg_stats_mv;
 drop table if exists merged_servers;
@@ -69,6 +72,9 @@ drop table if exists players cascade;
 \i tables/merged_servers.tab
 \i tables/player_agg_stats_mv.tab
 \i tables/player_game_frag_matrix.tab
+\i tables/player_glickos_queue.tab
+\i tables/player_glickos_base.tab
+\i tables/player_glickos_current.tab
 
 begin;