Per culture captions for data form field characteristics.
Primary Key
Primary Key |
Field Type |
ID |
uniqueidentifier |
Fields
Field |
Field Type |
Null |
Notes |
Description |
CULTURE |
nvarchar(5) |
|
Default = '' |
Culture this caption is modifying. (eg. en-US, en-GB, blank for Invariant) |
CAPTION |
nvarchar(200) |
|
Default = '' |
Customized caption. |
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 |
DATAFORMFIELDCHARACTERISTICID |
uniqueidentifier |
|
DATAFORMFIELDCHARACTERISTIC.ID
|
Data form field characteristic this caption belongs to. |
ADDEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
CHANGEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
Indexes
Index Name |
Fields |
Unique |
Primary |
Clustered |
IX_DATAFORMFIELDCHARACTERISTICCAPTION_DATEADDED |
DATEADDED |
|
|
yes |
IX_DATAFORMFIELDCHARACTERISTICCAPTION_DATECHANGED |
DATECHANGED |
|
|
|
PK_DATAFORMFIELDCHARACTERISTICCAPTION |
ID |
yes |
yes |
|
UIX_DATAFORMFIELDCHARACTERISTICCAPTION_DATAFORMFIELDCHARACTERISTICID_CULTURE |
DATAFORMFIELDCHARACTERISTICID, CULTURE |
yes |
|
|
Triggers