Files
TJWaterServerBinary/resources/sql/create/12.curves.sql

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
);