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. |