Refine time schema

This commit is contained in:
WQY\qiong
2022-10-22 11:01:34 +08:00
parent be850e2bf6
commit d93d72a03e

View File

@@ -1,9 +1,20 @@
-- [TIMES]
-- TODO: constraint
create table times
(
key text not null
, value text not null
);
insert into times (key, value) values
('DURATION', '0:00')
, ('HYDRAULIC TIMESTEP', '1:00')
, ('QUALITY TIMESTEP', '0:05')
, ('RULE TIMESTEP', '0:05')
, ('PATTERN TIMESTEP', '1:00')
, ('PATTERN START', '0:00')
, ('REPORT TIMESTEP', '1:00')
, ('REPORT START', '0:00')
, ('START CLOCKTIME', '12:00 AM')
, ('STATISTIC', 'NONE') -- NONE / AVERAGED / MINIMUM / MAXIMUM / RANGE
;