Support SA

This commit is contained in:
WQY\qiong
2023-05-16 21:30:23 +08:00
parent 47d2fe9ddd
commit 6046cdf01a
10 changed files with 434 additions and 34 deletions

View File

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