martin/tests/fixtures/tables/points_empty.sql

10 lines
216 B
MySQL
Raw Normal View History

2024-03-17 05:45:43 +03:00
-- 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;