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,6 @@
create table region_sa
(
id text primary key references region(id)
, source varchar(32) not null -- references _node(id)
, time_index integer not null
);