Add table for sub region type

This commit is contained in:
WQY\qiong
2023-05-13 18:00:52 +08:00
parent 99775af649
commit 6d30bf7d70
10 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
create table region_dma
(
id text primary key references region(id)
, parent text references region_dma(id)
);