blob: 92591402d3f6ea8c250b667849a0162fec132798 [file] [log] [blame]
drop table product;
create table product
(
description VARCHAR(255),
price double precision not null,
productid VARCHAR(255) constraint pk_product primary key NOT NULL
);