8 lines
190 B
MySQL
8 lines
190 B
MySQL
|
|
create table if not exists orders (
|
||
|
|
id serial primary key,
|
||
|
|
symbol varchar(16) not null,
|
||
|
|
order_type varchar(8) not null,
|
||
|
|
price NUMERIC(10,2) not null,
|
||
|
|
quantity NUMERIC(10,2) not null
|
||
|
|
);
|