From c93fde15569118f7cb4fa725d4c800e362541d67 Mon Sep 17 00:00:00 2001 From: kshtiijrajsharma Date: Tue, 14 Nov 2023 12:03:43 +0545 Subject: [PATCH] Fix Ciritical Countries cid bug --- backend/sql/countries.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/sql/countries.sql b/backend/sql/countries.sql index 2ef73b90..c7d32402 100644 --- a/backend/sql/countries.sql +++ b/backend/sql/countries.sql @@ -7,6 +7,7 @@ CREATE TABLE public.countries ( description varchar NULL, iso_3 varchar(3) NULL, dataset_name varchar NULL, + locations _varchar NULL, geometry public.geometry(multipolygon, 4326) NULL, CONSTRAINT countries_pk PRIMARY KEY (cid) );