* [BAEL-4849] Article code * [BAEL-4968] Article code * [BAEL-4968] Article code * [BAEL-4968] Article code * [BAEL-4968] Remove extra comments * [BAEL-5258] Article Code * [BAEL-2765] PKCE Support for Secret Clients * [BAEL-5698] Article code * [BAEL-5698] Article code * [BAEL-5905] Initial code * [BAEL-5905] Article code * [BAEL-5905] Relocate article code to new module * [BAEL-6275] PostgreSQL NOTIFY/LISTEN * [BAEL-6275] Minor correction --------- Co-authored-by: Philippe Sevestre <psevestre@gmail.com>
8 lines
190 B
SQL
8 lines
190 B
SQL
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
|
|
);
|