From ee3100a61de68fce3250ca1d4e72ae27e40e5262 Mon Sep 17 00:00:00 2001 From: "WQY\\qiong" Date: Sat, 13 May 2023 19:12:07 +0800 Subject: [PATCH] Clean --- script/sql/create/32.region.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/sql/create/32.region.sql b/script/sql/create/32.region.sql index 9b59a10..78e0bfd 100644 --- a/script/sql/create/32.region.sql +++ b/script/sql/create/32.region.sql @@ -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);