Add new column for game_id

This commit is contained in:
Anthony Mineo 2020-03-15 13:58:31 -04:00
parent 9c8a60e626
commit 9518a8a6b8

View file

@ -41,6 +41,7 @@ CREATE TABLE "public"."games" (
"player_name" text NOT NULL, "player_name" text NOT NULL,
"stat_overwrite" numeric NOT NULL, "stat_overwrite" numeric NOT NULL,
"map" text NOT NULL, "map" text NOT NULL,
"game_id" numeric NOT NULL DEFAULT 0,
"stats" jsonb NOT NULL, "stats" jsonb NOT NULL,
"datestamp" timestamp NOT NULL, "datestamp" timestamp NOT NULL,
"uuid" text NOT NULL UNIQUE, "uuid" text NOT NULL UNIQUE,