6 lines
162 B
SQL
6 lines
162 B
SQL
CREATE DATABASE righttree;
|
|
|
|
\c righttree
|
|
CREATE EXTENSION IF NOT EXISTS postgis;
|
|
GRANT ALL ON geometry_columns TO PUBLIC;
|
|
GRANT ALL ON spatial_ref_sys TO PUBLIC;
|