Field |
Field Type |
Null |
Notes |
Description |
AUTHORCONSTITUENTID |
uniqueidentifier |
 |
|
The constituent id of the comment author, if they are logged-in. |
AUTHORNAME |
nvarchar(100) |
|
Default = '' |
Full name of the comment author. Most useful for comments by non-constituents. |
COMMENTTEXT |
nvarchar(1000) |
|
Default = '' |
Full text of the posted comment |
REFERENCEID |
uniqueidentifier |
|
|
GUID of the participant, image or video |
REFERENCETYPECODE |
tinyint |
|
Default = 0 |
Commenttype that references a participant, image, or video |
REFERENCETYPE |
nvarchar(11) (Computed) |
 |
CASE [REFERENCETYPECODE] WHEN 0 THEN N'Participant' WHEN 1 THEN N'Image' WHEN 2 THEN N'Video' END |
Provides a translation for the 'REFERENCETYPECODE' field. |
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. |