begin
insert into ec_retailer_locations_audit (
retailer_location_id, retailer_id, location_name,
primary_contact_name, secondary_contact_name,
primary_contact_info, secondary_contact_info,
line1, line2,
city, usps_abbrev,
zip_code, phone,
fax, country_code,
url, financing_policy,
return_policy, price_guarantee_policy,
delivery_policy, installation_policy,
last_modified,
last_modifying_user, modified_ip_address
) values (
old.retailer_location_id,
old.retailer_id, old.location_name,
old.primary_contact_name, old.secondary_contact_name,
old.primary_contact_info, old.secondary_contact_info,
old.line1, old.line2,
old.city, old.usps_abbrev,
old.zip_code, old.phone,
old.fax, old.country_code,
old.url, old.financing_policy,
old.return_policy, old.price_guarantee_policy,
old.delivery_policy, old.installation_policy,
old.last_modified,
old.last_modifying_user, old.modified_ip_address
);
return new;
end;