Skip to content

Commit

Permalink
fix: allow tasks with point geom in postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
ofr1tz committed Dec 3, 2024
1 parent dcaab3d commit 8128488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postgres/initdb.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 8128488

Please sign in to comment.