Files
TJWaterServer/script/sql/create/37.history_patterns_flows.sql
2025-01-15 22:41:25 +08:00

11 lines
315 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- [HISTORY_PATTERNS_FLOWS]
-- 王名豪
-- 2025/01/12
-- 保存pattern和pattern基于历史的流量数据用于后续流量数据更新pattern
create table history_patterns_flows
(
_order serial primary key
, id varchar(32) references _pattern(id) not null
, factor float8 not null
, flow float8 not null
);