CustomFieldAuditSqlDao.sql.stg

17 lines | 401 B Blame History Raw Download
group CustomFieldAuditSqlDao;

fields(prefix) ::= <<
    <prefix>table_name,
    <prefix>record_id,
    <prefix>change_type,
    <prefix>change_date,
    <prefix>changed_by,
    <prefix>reason_code,
    <prefix>comments
>>

batchInsertAuditLogFromTransaction() ::= <<
    INSERT INTO audit_log(<fields()>)
    VALUES('custom_field_history', :id, :changeType, :createdDate, :userName, NULL, NULL);
>>
;