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

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