13 lines
195 B
SQL
13 lines
195 B
SQL
-- [LABELS]
|
|
|
|
create table labels
|
|
(
|
|
x numeric not null
|
|
, y numeric not null
|
|
, label text not null
|
|
, node varchar(32) references _node(id)
|
|
, primary key (x, y)
|
|
);
|
|
|
|
-- unset node when delete node
|