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

10 lines
194 B
SQL

-- [DEMANDS]
create table demands
(
junction varchar(32) references junctions(id) not null
, demand numeric not null
, pattern varchar(32) references _pattern(id)
, category text not null
);