8 lines
233 B
SQL
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
|
|
); |