Skip to content

Commit

Permalink
#436 fluff
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielwol authored and radumas committed Mar 3, 2024
1 parent b2845d9 commit f79fd6e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions volumes/miovision/sql/table/create-table-intersections.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,21 @@
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,
w_leg_restricted boolean,
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.';

0 comments on commit f79fd6e

Please sign in to comment.