blob: b3504cf13d2eacfece60e2a986b2bab2cd6abaa6 [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
);
commit;
exit;