FAFOFFLINEFORMCONTENT
Part content data for the FAF offline form part.
Primary Key
| Primary Key |
Field Type |
| ID |
uniqueidentifier |
Fields
| 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) |
yes |
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) |
yes |
CONVERT(bigint, TS) |
Numeric representation of the timestamp. |
Foreign Keys
| Foreign Key |
Field Type |
Null |
Notes |
Description |
| ADDEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
| CHANGEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
Indexes
| Index Name |
Fields |
Unique |
Primary |
Clustered |
| IX_FAFOFFLINEFORMCONTENT_DATEADDED |
DATEADDED |
|
|
yes |
| IX_FAFOFFLINEFORMCONTENT_DATECHANGED |
DATECHANGED |
|
|
|
| PK_FAFOFFLINEFORMCONTENT |
ID |
yes |
yes |
|
Triggers