blob: 609011716ebb68c4d9822ee14303404a05f01f0d [file] [log] [blame]
drop table product;
create table product
(
description VARCHAR(127),
price double precision not null,
productid VARCHAR(127) primary key
);
commit;
exit;