use moma; drop table if exists produced; create table produced ( cid int, objectid int not null ); create index p_cid_idx on produced(cid); create index p_obid_idx on produced(objectid);