Files
rust-actixweb-diesel-api/migrations/2020-11-29-201716_create_orders/up.sql
2020-11-30 02:37:37 +05:30

8 lines
233 B
SQL

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
);