Primary Key Field Type
 ID uniqueidentifier

Field Field Type Null Notes Description
 NAME nvarchar(500)   Default = '' Form name
 DESCRIPTION nvarchar(510)   Default = '' Form description
 TYPECODE tinyint   Default = 3 Form type
 TYPE nvarchar(12) (Computed) CASE [TYPECODE] WHEN 1 THEN N'Registration' WHEN 2 THEN N'Sponsorship' WHEN 3 THEN N'Donation' END Provides a translation for the 'TYPECODE' field.
 IMAGEID int   Default = 0 Form image ID
 HTML nvarchar(max)   Default = '' Form html
 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.

Foreign Key Field Type Null Notes Description
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.

Index Name Field(s) Unique Primary Clustered
 IX_FAFOFFLINEFORMCONTENT_DATEADDED DATEADDED    
 IX_FAFOFFLINEFORMCONTENT_DATECHANGED DATECHANGED      
 PK_FAFOFFLINEFORMCONTENT ID  

Trigger Name Description
 TR_FAFOFFLINEFORMCONTENT_AUDIT_UPDATE
 TR_FAFOFFLINEFORMCONTENT_AUDIT_DELETE