mirror of
https://github.com/maplibre/martin.git
synced 2024-12-20 13:21:59 +03:00
10 lines
216 B
SQL
10 lines
216 B
SQL
-- This table is intentionally left empty
|
|
CREATE TABLE points_empty
|
|
(
|
|
gid SERIAL PRIMARY KEY,
|
|
geom GEOMETRY
|
|
);
|
|
|
|
CREATE INDEX ON points_empty USING GIST (geom);
|
|
CLUSTER points_empty_geom_idx ON points_empty;
|