Files
TJWaterServer/script/sql/create/18.sources.sql
2022-11-11 20:14:24 +08:00

12 lines
274 B
SQL

-- [SOURCES]
create type sources_type as enum ('CONCEN', 'MASS', 'FLOWPACED', 'SETPOINT');
create table sources
(
node varchar(32) primary key references _node(id)
, type sources_type not null
, strength numeric not null
, pattern varchar(32) references _pattern(id)
);