Files
TJWaterServer/script/sql/create/33.dma.sql
2023-05-14 13:20:54 +08:00

7 lines
137 B
SQL

create table region_dma
(
id text primary key references region(id)
, parent text --references region_dma(id)
, nodes text not null
);