Field |
Field Type |
Null |
Notes |
Description |
OFFLINEFORMCATEGORYCODE |
tinyint |
|
Default = 0 |
Offline form code |
OFFLINEFORMCATEGORY |
nvarchar(25) (Computed) |
 |
CASE [OFFLINEFORMCATEGORYCODE] WHEN 0 THEN N'None' WHEN 1 THEN N'Offline registration form' WHEN 2 THEN N'Offline sponsorship form' WHEN 3 THEN N'Offline donation form' END |
Provides a translation for the 'OFFLINEFORMCATEGORYCODE' field. |
OFFLINEFORMCONTENT |
nvarchar(max) |
|
Default = '' |
Content for offline form |
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. |