Files
TJWaterServer/script/sql/create/22.report.sql
2022-10-22 11:01:52 +08:00

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')
;