Field |
Field Type |
Null |
Notes |
Description |
DESCRIPTION |
nvarchar(255) |
|
Default = '' |
Name of the email category. All active email categories must be defined in this table. |
PRIORITY |
int |
|
Default = 50 |
|
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. |
CATEGORYID |
int |
|
Default = 0 |
The ID of the category. This maps to the Category enum in the code, and the category field in the queue table. |