11 lines
213 B
SQL
11 lines
213 B
SQL
-- [DEMANDS]
|
|
|
|
create table demands
|
|
(
|
|
_order serial primary key
|
|
, junction varchar(32) references junctions(id) not null
|
|
, demand numeric not null
|
|
, pattern varchar(32) references _pattern(id)
|
|
, category text
|
|
);
|