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