Get Product API working fine
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
-- This file should undo anything in `up.sql`
|
||||
drop table orders;
|
||||
@@ -0,0 +1,8 @@
|
||||
create table if not exists orders
|
||||
(
|
||||
orderid integer not null
|
||||
constraint pk_orders
|
||||
primary key,
|
||||
customer_email text not null,
|
||||
created_at timestamp not null default current_timestamp
|
||||
);
|
||||
Reference in New Issue
Block a user