10 lines
164 B
SQL
10 lines
164 B
SQL
-- [EMITTERS]
|
|
|
|
create table emitters
|
|
(
|
|
junction varchar(32) primary key references junctions(id)
|
|
, coefficient float8 not null
|
|
);
|
|
|
|
-- delete when delete junction
|