8 lines
123 B
SQL
8 lines
123 B
SQL
-- [QUALITY]
|
|
|
|
create table quality
|
|
(
|
|
node varchar(32) primary key references _node(id)
|
|
, initialqual numeric not null
|
|
);
|