7 lines
148 B
SQL
7 lines
148 B
SQL
create table region_dma
|
|
(
|
|
id text primary key references region(id)
|
|
, parent text --references region_dma(id)
|
|
, nodes text not null default ''
|
|
);
|