9 lines
128 B
SQL
9 lines
128 B
SQL
-- [CURVES]
|
|
|
|
create table curves
|
|
(
|
|
id varchar(32) references _curve(id) not null
|
|
, x numeric not null
|
|
, y numeric not null
|
|
);
|