Refine report schema
This commit is contained in:
@@ -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 ('');
|
||||||
|
|||||||
Reference in New Issue
Block a user