begin
insert into ec_product_reviews_audit (
review_id, product_id,
author_name, publication, review_date,
review,
display_p,
last_modified,
last_modifying_user, modified_ip_address
) values (
old.review_id, old.product_id,
old.author_name, old.publication, old.review_date,
old.review,
old.display_p,
old.last_modified,
old.last_modifying_user, old.modified_ip_address
);
return new;
end;