From b0d58f3fbea590e769afdc70b04c1e5e2e6e6000 Mon Sep 17 00:00:00 2001 From: Justin Torre Date: Tue, 14 May 2024 10:34:28 -0700 Subject: [PATCH] added country code (#1917) --- valhalla/jawn/src/lib/stores/LogStore.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/valhalla/jawn/src/lib/stores/LogStore.ts b/valhalla/jawn/src/lib/stores/LogStore.ts index 01558b160d..396b03691a 100644 --- a/valhalla/jawn/src/lib/stores/LogStore.ts +++ b/valhalla/jawn/src/lib/stores/LogStore.ts @@ -43,6 +43,7 @@ const requestColumns = new pgp.helpers.ColumnSet( { name: "target_url", def: null }, { name: "threat", def: null }, { name: "user_id", def: null }, + { name: "country_code", def: null }, ], { table: "request" } );