8 lines
133 B
SQL
8 lines
133 B
SQL
-- [EMITTERS]
|
|
|
|
create table emitters
|
|
(
|
|
junction varchar(32) primary key references junctions(id)
|
|
, coefficient numeric not null
|
|
);
|