10 lines
156 B
SQL
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
|
|
);
|