Files
TJWaterServer/script/sql/create/32.region.sql
2023-04-29 14:25:43 +08:00

8 lines
141 B
SQL

create table region
(
id text primary key
, boundary geometry not null unique
);
create index region_gist on region using gist(boundary);