From 729a4be11567c2cf82c9068d8d2f6f37c5b264cd Mon Sep 17 00:00:00 2001 From: Levi Szamek Date: Tue, 3 Dec 2024 17:29:07 +0100 Subject: [PATCH] fix: change to all geometries in tasks table in setup db --- mapswipe_workers/tests/integration/set_up_db.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mapswipe_workers/tests/integration/set_up_db.sql b/mapswipe_workers/tests/integration/set_up_db.sql index ce9b9719..b03e7669 100644 --- a/mapswipe_workers/tests/integration/set_up_db.sql +++ b/mapswipe_workers/tests/integration/set_up_db.sql @@ -47,7 +47,7 @@ CREATE TABLE IF NOT EXISTS tasks ( project_id varchar, group_id varchar, task_id varchar, - geom geometry(MULTIPOLYGON, 4326), + geom geometry(GEOMETRY, 4326), project_type_specifics json, PRIMARY KEY (project_id, group_id, task_id), FOREIGN KEY (project_id) REFERENCES projects (project_id),