Files
TJWaterServer/script/sql/create/12.curves.sql
2022-10-29 09:11:27 +08:00

10 lines
156 B
SQL

-- [CURVES]
create table curves
(
_order serial primary key
, id varchar(32) references _curve(id) not null
, x numeric not null
, y numeric not null
);