Primary Key Field Type
 ID uniqueidentifier

Field Field Type Null Notes Description
 TYPECODE tinyint   Default = 0 Type
 RSSFEEDURL UDT_WEBADDRESS   Default = '' url of the RSS Feed
 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.
 TYPE nvarchar(11) (Computed) CASE [TYPECODE] WHEN 0 THEN N'Participant' WHEN 1 THEN N'Team' WHEN 2 THEN N'Company' WHEN 3 THEN N'Household' END Provides a translation for the 'TYPECODE' field.

Foreign Key Field Type Null Notes Description
 EVENTID uniqueidentifier   EVENT.ID The event id related to this Feed
 REGISTRANTID uniqueidentifier REGISTRANT.ID The registrant id related to this Feed
 TEAMFUNDRAISINGTEAMID uniqueidentifier TEAMFUNDRAISINGTEAM.ID The Team id related to this Feed
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.

Index Name Field(s) Unique Primary Clustered
 IX_FAFRSSFEED_DATEADDED DATEADDED    
 IX_FAFRSSFEED_DATECHANGED DATECHANGED      
 IX_FAFRSSFEED_EVENTID_REGISTRANTID EVENTID, REGISTRANTID      
 PK_FAFRSSFEED ID  

Trigger Name Description
 TR_FAFRSSFEED_AUDIT_UPDATE
 TR_FAFRSSFEED_AUDIT_DELETE

Entity-Relationship diagram of this table