liquid_feedback_core

view pgLatLon/create_test_db.schema.sql @ 529:96ee2db56bec

New PostgreSQL extension "pgLatLon" for geospatial operations and indexing in LiquidFeedback
author jbe
date Thu Aug 18 20:19:58 2016 +0200 (2016-08-18)
parents
children
line source
2 CREATE EXTENSION latlon;
4 CREATE TABLE "test" (
5 "id" SERIAL4 PRIMARY KEY,
6 "location" EPOINT NOT NULL,
7 "area" ECIRCLE NOT NULL );
9 CREATE INDEX "test_location_key" ON "test" USING gist ("location");
10 CREATE INDEX "test_area_key" ON "test" USING gist ("area");

Impressum / About Us