Refine report schema

This commit is contained in:
WQY\qiong
2022-11-11 19:43:52 +08:00
parent 03ac80a285
commit 9d6b7f2b4a

View File

@@ -1,7 +1,5 @@
-- [REPORT] -- [REPORT]
-- TODO: constraint
create table report create table report
( (
key text not null key text not null
@@ -18,3 +16,10 @@ insert into report (key, value) values
, ('NODES', 'NONE') , ('NODES', 'NONE')
, ('LINKS', 'NONE') , ('LINKS', 'NONE')
; ;
create table variable_report
(
content text primary key
);
insert into variable_report (content) values ('');