-- [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 );