mirror of
https://github.com/maplibre/martin.git
synced 2024-12-22 22:31:41 +03:00
10 lines
216 B
MySQL
10 lines
216 B
MySQL
|
-- 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;
|