26 lines
396 B
SQL
26 lines
396 B
SQL
-- [REPORT]
|
|
|
|
create table report
|
|
(
|
|
key text not null
|
|
, value text not null
|
|
);
|
|
|
|
insert into report (key, value) values
|
|
('PAGESIZE', '0')
|
|
--, ('FILE', '')
|
|
, ('STATUS', 'NO')
|
|
, ('SUMMARY', 'YES')
|
|
--, ('MESSAGES', 'NO')
|
|
, ('ENERY', 'NO')
|
|
, ('NODES', 'NONE')
|
|
, ('LINKS', 'NONE')
|
|
;
|
|
|
|
create table variable_report
|
|
(
|
|
content text primary key
|
|
);
|
|
|
|
insert into variable_report (content) values ('');
|