You've already forked orderservice
6 lines
147 B
SQL
6 lines
147 B
SQL
create table if not exists orders (
|
|
id uuid primary key,
|
|
item varchar(500) not null,
|
|
quantity integer not null check (quantity > 0)
|
|
);
|