Refine report schema

This commit is contained in:
WQY\qiong
2022-11-12 08:26:10 +08:00
parent 453e6391e2
commit 14a7bd3cf1
2 changed files with 4 additions and 13 deletions

View File

@@ -11,15 +11,8 @@ insert into report (key, value) values
--, ('FILE', '')
, ('STATUS', 'NO')
, ('SUMMARY', 'YES')
--, ('MESSAGES', 'NO')
, ('ENERY', 'NO')
, ('NODES', 'NONE')
, ('LINKS', 'NONE')
, ('MESSAGES', 'YES')
, ('ENERY', 'YES')
, ('NODES', 'ALL')
, ('LINKS', 'ALL')
;
create table variable_report
(
content text primary key
);
insert into variable_report (content) values ('');

View File

@@ -1,5 +1,3 @@
-- [REPORT]
drop table if exists variable_report;
drop table if exists report;