10 lines
148 B
SQL
10 lines
148 B
SQL
-- [LABELS]
|
|
|
|
create table labels
|
|
(
|
|
x numeric not null
|
|
, y numeric not null
|
|
, label text not null
|
|
, anchornode varchar(32) references _node(id)
|
|
);
|