Files
TJWaterServer/script/sql/create/12.curves.sql
2023-05-05 21:18:56 +08:00

10 lines
154 B
SQL

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