11 lines
315 B
SQL
11 lines
315 B
SQL
-- [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
|
||
); |