TRIBUTE
Stores information pertaining to tributes.
Primary Key
| Primary Key |
Field Type |
| ID |
uniqueidentifier |
Fields
| Field |
Field Type |
Null |
Notes |
Description |
| TRIBUTETEXT |
nvarchar(255) |
|
Default = '' |
|
| ISACTIVE |
bit |
|
Default = 1 |
Indicates whether or not the tribute is active. |
| 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 |
| TRIBUTETYPECODEID |
uniqueidentifier |
|
TRIBUTETYPECODE.LOCALID
|
The tribute type for this tribute. |
| TRIBUTEEID |
uniqueidentifier |
yes |
CONSTITUENT.LOCALID
|
Foreign key to the Constituent table. |
| DESIGNATIONID |
uniqueidentifier |
yes |
DESIGNATION.ID
|
The default designation for the tribute. |
| NAMEFORMATFUNCTIONID |
uniqueidentifier |
yes |
NAMEFORMATFUNCTION.ID
|
FK to NAMEFORMATFUNCTION |
| ADDEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
| CHANGEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
Indexes
| Index Name |
Fields |
Unique |
Primary |
Clustered |
| IX_TRIBUTE_DATEADDED |
DATEADDED |
|
|
yes |
| IX_TRIBUTE_DATECHANGED |
DATECHANGED |
|
|
|
| IX_TRIBUTE_TRIBUTEEID |
TRIBUTEEID |
|
|
|
| IX_TRIBUTE_TRIBUTETEXT |
TRIBUTETEXT |
|
|
|
| IX_TRIBUTE_TRIBUTETYPECODEID |
TRIBUTETYPECODEID |
|
|
|
| PK_TRIBUTE |
ID |
yes |
yes |
|
Triggers
Referenced by