This commit is contained in:
WQY\qiong
2023-05-13 19:12:07 +08:00
parent 553dad1d2c
commit ee3100a61d

View File

@@ -3,8 +3,8 @@ create type region_type as enum ('NONE', 'DMA', 'SA', 'VD', 'WDA');
create table region
(
id text primary key
, r_type region_type not null default 'NONE'
, boundary geometry not null unique
, r_type region_type not null default 'NONE'
);
create index region_gist on region using gist(boundary);