Untitled
unknown
plain_text
a year ago
415 B
9
Indexable
create table spatial_ref_sys
(
srid integer not null
primary key
constraint spatial_ref_sys_srid_check
check ((srid > 0) AND (srid <= 998999)),
auth_name varchar(256),
auth_srid integer,
srtext varchar(2048),
proj4text varchar(2048)
);
alter table spatial_ref_sys
owner to "cholimex-vl-dev";
grant select on spatial_ref_sys to public;
Editor is loading...
Leave a Comment