| Table p_partner_contact_attribute | 
| 
Description: Associates a p_contact_attribute_detail with a p_contact_log. A contact log may have more than one p_contact_attribute_detail associated with it.  | 
| PRIMARY KEY | ||
| 
p_contact_id_i
 
bigint default: 0 NOT NULL  | identifying key for p_contact_log | p_contact_log | 
| 
p_contact_attribute_code_c
 
varchar (32) NOT NULL  | Contact Attribute Code | p_contact_attribute_detail | 
| 
p_contact_attr_detail_code_c
 
varchar (32) NOT NULL  | code for attribute detail | p_contact_attribute_detail | 
| 
s_date_created_d
 
date default: CURRENT_DATE  | The date the record was created. | |
| 
s_created_by_c
 
varchar (20)  | User ID of who created this record. | s_user | 
| 
s_date_modified_d
 
date  | The date the record was modified. | |
| 
s_modified_by_c
 
varchar (20)  | User ID of who last modified this record. | s_user | 
| 
s_modification_id_t
 
timestamp default: CURRENT_TIMESTAMP  | This identifies the current version of the record. | |
FOREIGN KEY p_partner_contact_attribute_fk1: p_contact_attribute_code_c;p_contact_attr_detail_code_c => p_contact_attribute_detail p_partner_contact_attribute_fk2: p_contact_id_i => p_contact_log p_partner_contact_attribute_fkcr: s_created_by_c => s_user p_partner_contact_attribute_fkmd: s_modified_by_c => s_user  | ||