Field |
Field Type |
Null |
Notes |
Description |
PAGEID |
int |
|
Default = 1 |
Page ID for each fundraising category |
PAGECATEGORYCODE |
tinyint |
|
Default = 1 |
Type of Page category |
PAGECATEGORY |
nvarchar(28) (Computed) |
 |
CASE [PAGECATEGORYCODE] WHEN 0 THEN N'Default' WHEN 1 THEN N'Participant fundraising page' WHEN 2 THEN N'Team fundraising page' WHEN 3 THEN N'Household fundraising page' WHEN 4 THEN N'Company fundraising page' END |
Provides a translation for the 'PAGECATEGORYCODE' 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. |