Field |
Field Type |
Null |
Notes |
Description |
FORMID |
uniqueidentifier |
 |
|
Form ID for each category |
FORMCATEGORYCODE |
tinyint |
|
Default = 1 |
Type of Form category |
FORMCATEGORY |
nvarchar(17) (Computed) |
 |
CASE [FORMCATEGORYCODE] WHEN 0 THEN N'Default' WHEN 1 THEN N'Registration form' WHEN 2 THEN N'Sponsorship form' WHEN 3 THEN N'Donation form' WHEN 4 THEN N'Volunteer form' END |
Provides a translation for the 'FORMCATEGORYCODE' 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. |
ISDEFAULTFORM |
bit |
|
Default = 0 |
Is default form |