| Table s_function_relationship | 
| Description: Represents a relationship between two particular functions. Eg. Partner Find and Partner Edit | 
| PRIMARY KEY | ||
| s_function_1_c 
varchar (30) NOT NULL | Identifier for one particular function | s_function | 
| s_function_2_c 
varchar (30) NOT NULL | Identifier for related function | s_function | 
| s_code_to_run_c 
varchar (400) | Code to run if a workflow contains function_1 and function_2 as adjacent steps. This code will provide the glue to connect the two steps. | |
| 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 s_function_relationship_fk1: s_function_1_c => s_function s_function_relationship_fk2: s_function_2_c => s_function s_function_relationship_fkcr: s_created_by_c => s_user s_function_relationship_fkmd: s_modified_by_c => s_user | ||