Field |
Field Type |
Null |
Notes |
Description |
NAME |
nvarchar(50) |
|
Default = '' |
Contains the name of the field. |
DIRECTIONCODE |
tinyint |
|
Default = 0 |
Contains whether the field is to or from The Raiser's Edge. |
DIRECTION |
nvarchar(8) (Computed) |
 |
CASE [DIRECTIONCODE] WHEN 0 THEN N'From RE7' WHEN 1 THEN N'To RE7' END |
Provides a translation for the 'DIRECTIONCODE' field. |
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. |