diff --git a/volumes/miovision/sql/table/create-table-intersections.sql b/volumes/miovision/sql/table/create-table-intersections.sql index fd7a1a111..429cbb06c 100644 --- a/volumes/miovision/sql/table/create-table-intersections.sql +++ b/volumes/miovision/sql/table/create-table-intersections.sql @@ -11,7 +11,7 @@ street_cross text COLLATE pg_catalog."default", int_id bigint, px integer, - geom geometry(Point,4326), + geom geometry (POINT, 4326), n_leg_restricted boolean, e_leg_restricted boolean, s_leg_restricted boolean, @@ -19,12 +19,13 @@ api_name text COLLATE pg_catalog."default" ) WITH ( - OIDS = FALSE + oids = FALSE ) TABLESPACE pg_default; COMMENT ON COLUMN miovision_api.intersections.intersection_name -IS 'A short name for the intersection, following the convention [E / W street name] / [N / S street name].'; +IS 'A short name for the intersection, following the convention +[E / W street name] / [N / S street name].'; COMMENT ON COLUMN miovision_api.intersections.api_name IS 'The intersection name used in the Miovision API, for communication with external parties.';