From 9518a8a6b88f883449bae4530e74c2ee51170c34 Mon Sep 17 00:00:00 2001 From: Anthony Mineo Date: Sun, 15 Mar 2020 13:58:31 -0400 Subject: [PATCH] Add new column for game_id --- build/postgres/docker-entrypoint-initdb.d/backup/t2_stats.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/build/postgres/docker-entrypoint-initdb.d/backup/t2_stats.sql b/build/postgres/docker-entrypoint-initdb.d/backup/t2_stats.sql index a372c42..4f8576d 100644 --- a/build/postgres/docker-entrypoint-initdb.d/backup/t2_stats.sql +++ b/build/postgres/docker-entrypoint-initdb.d/backup/t2_stats.sql @@ -41,6 +41,7 @@ CREATE TABLE "public"."games" ( "player_name" text NOT NULL, "stat_overwrite" numeric NOT NULL, "map" text NOT NULL, + "game_id" numeric NOT NULL DEFAULT 0, "stats" jsonb NOT NULL, "datestamp" timestamp NOT NULL, "uuid" text NOT NULL UNIQUE,