8 lines
178 B
SQL
8 lines
178 B
SQL
create table region_sa
|
|
(
|
|
id text primary key references region(id)
|
|
, time_index integer not null
|
|
, source varchar(32) not null -- references _node(id)
|
|
, nodes text not null
|
|
);
|