Primary Key Field Type
 ID uniqueidentifier

Field Field Type Null Notes Description
 NAME nvarchar(200)   Default = '' Name of the page.
 TITLE nvarchar(200)   Default = '' Text that will be displayed in the browser's title bar and any links created using this page.
 DESCRIPTION nvarchar(1000)   Default = '' Description of the web dashboard page.
 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
 WEBDASHBOARDLAYOUTID uniqueidentifier   WEBDASHBOARDLAYOUT.ID Layout for the page.
 OWNERID uniqueidentifier   APPUSER.ID Owner of the page.
 WEBDASHBOARDFOLDERID uniqueidentifier WEBDASHBOARDFOLDER.ID Web dashboard folder to which this page belongs.
 CONTEXTRECORDTYPEID uniqueidentifier RECORDTYPE.ID The page's context record type.
 CONTEXTRECORDSEARCHLISTCATALOGID uniqueidentifier SEARCHLISTCATALOG.ID The search list used to select a context record when none is provided.
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.

Index Name Field(s) Unique Primary Clustered
 IX_WEBDASHBOARDPAGE_DATEADDED DATEADDED    
 IX_WEBDASHBOARDPAGE_DATECHANGED DATECHANGED      
 PK_WEBDASHBOARDPAGE ID  
 UIX_WEBDASHBOARDPAGE_NAME_WEBDASHBOARDFOLDERID NAME, WEBDASHBOARDFOLDERID    
 UIX_WEBDASHBOARDPAGE_TITLE_WEBDASHBOARDFOLDERID TITLE, WEBDASHBOARDFOLDERID    

Trigger Name Description
 TR_WEBDASHBOARDPAGE_AUDIT_UPDATE
 TR_WEBDASHBOARDPAGE_AUDIT_DELETE

Entity-Relationship diagram of this table