21 lines
303 B
SQL
21 lines
303 B
SQL
-- [REPORT]
|
|
|
|
-- TODO: constraint
|
|
|
|
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')
|
|
;
|