10 lines
147 B
SQL
10 lines
147 B
SQL
-- [QUALITY]
|
|
|
|
create table quality
|
|
(
|
|
node varchar(32) primary key references _node(id)
|
|
, quality numeric not null
|
|
);
|
|
|
|
-- delete when delete ndoe
|