DESIGNATIONLEVELTYPE
Holds records that describe types of fundraising purposes and their associated UI characteristics.
Primary Key
| Primary Key |
Field Type |
| ID |
uniqueidentifier |
Fields
| Field |
Field Type |
Null |
Notes |
Description |
| DESCRIPTION |
nvarchar(100) |
|
Default = '' |
The name of the fundraising purpose type. |
| SEQUENCE |
int |
|
Default = 0 |
|
| HASADMINISTRATOR |
bit |
|
Default = 0 |
Indicates if this purpose type tracks the administrator field. |
| HASRECIPIENTS |
bit |
|
Default = 0 |
Indicates if this purpose type tracks recipients. |
| 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. |
| HASDONORINFORMATION |
bit |
|
Default = 0 |
Indicates if this purpose type tracks donor information. |
| HASFINANCIALINFORMATION |
bit |
|
Default = 0 |
Indicates if this purpose type tracks financial information. |
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_DESIGNATIONLEVELTYPE_DATEADDED |
DATEADDED |
|
|
yes |
| IX_DESIGNATIONLEVELTYPE_DATECHANGED |
DATECHANGED |
|
|
|
| PK_DESIGNATIONLEVELTYPE |
ID |
yes |
yes |
|
| UC_DESIGNATIONLEVELTYPE_DESCRIPTION |
DESCRIPTION |
yes |
|
|
Triggers
Referenced by