Files
TJWaterServer/script/sql/create/25.vertices.sql
2022-11-04 16:30:09 +08:00

10 lines
167 B
SQL

-- [VERTICES]
create table vertices
(
_order serial primary key
, link varchar(32) references _link(id) not null
, x numeric not null
, y numeric not null
);