Get Product API working fine
This commit is contained in:
8
migrations/2020-11-29-201716_create_orders/up.sql
Normal file
8
migrations/2020-11-29-201716_create_orders/up.sql
Normal file
@@ -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