Files
TJWaterServer/script/sql/create/20.mixing.sql
2022-10-09 11:06:19 +08:00

11 lines
207 B
SQL

-- [MIXING]
create type mixing_model as enum ('mixed', '2comp', 'fifo', 'lifo');
create table mixing
(
tank varchar(32) primary key references tanks(id)
, model mixing_model not null
, value numeric
);