Primary Key Field Type
 ID uniqueidentifier

Field Field Type Null Notes Description
 MATCHFACTOR decimal(5, 2)   Default = 0
 DATEADDED datetime   Default = getdate() Indicates the date this record was added.
 DATECHANGED datetime   Default = getdate() Indicates the date this record was last changed.
 TS timestamp   Timestamp.
 TSLONG bigint (Computed) CONVERT(bigint, TS) Numeric representation of the timestamp.
 CONSTITUENTTYPECODE tinyint   Default = 0 The ID of the constituent type.
 CONSTITUENTTYPE nvarchar(12) (Computed) CASE [CONSTITUENTTYPECODE] WHEN 0 THEN N'Individual' WHEN 1 THEN N'Organization' WHEN 2 THEN N'Group' WHEN 3 THEN N'Household' END Provides a translation for the 'CONSTITUENTTYPECODE' field.

Foreign Key Field Type Null Notes Description
 RELATIONSHIPTYPECODEID uniqueidentifier   RELATIONSHIPTYPECODE.ID The ID of the relationship type.
 REVENUERECOGNITIONTYPECODEID uniqueidentifier REVENUERECOGNITIONTYPECODE.ID The ID of the recognition credit type.
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.

Index Name Field(s) Unique Primary Clustered
 IX_RECOGNITIONRELATIONSHIPDEFAULT_DATEADDED DATEADDED    
 IX_RECOGNITIONRELATIONSHIPDEFAULT_DATECHANGED DATECHANGED      
 PK_RECOGNITIONRELATIONSHIPDEFAULT ID  
 UIX_RECOGNITIONRELATIONSHIPDEFAULT_CONSTITUENTTYPECODE_RELATIONSHIPTYPECODEID CONSTITUENTTYPECODE, RELATIONSHIPTYPECODEID    

Trigger Name Description
 TR_RECOGNITIONRELATIONSHIPDEFAULT_AUDIT_UPDATE
 TR_RECOGNITIONRELATIONSHIPDEFAULT_AUDIT_DELETE

Entity-Relationship diagram of this table