create table product_contents ( description text, fit_notes text, material text, care_instructions text, origin text ); comment on column product_contents.description is ' Product description. '; comment on column product_contents.fit_notes is ' Sizing information. '; comment on column product_contents.material is ' Materials list. '; comment on column product_contents.care_instructions is ' Additional care information. '; comment on column product_contents.origin is ' Place of manufacture. ';