RESERVATIONNOTE
This table contains notes belonging to reservations.
Primary Key
Primary Key |
Field Type |
ID |
uniqueidentifier |
Fields
Field |
Field Type |
Null |
Notes |
Description |
DATEENTERED |
datetime |
|
|
The date the note was entered. |
TITLE |
nvarchar(50) |
|
Default = '' |
The title of the note. |
TEXTNOTE |
nvarchar(max) |
|
Default = '' |
The plain text that comprises this note. |
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. |
HTMLNOTE |
nvarchar(max) |
|
Default = '' |
The HTML that comprises this note. |
Foreign Keys
Foreign Key |
Field Type |
Null |
Notes |
Description |
AUTHORID |
uniqueidentifier |
yes |
CONSTITUENT.LOCALID
|
The author of the note |
RESERVATIONNOTETYPECODEID |
uniqueidentifier |
|
RESERVATIONNOTETYPECODE.ID
|
Indicates the user-defined type of this note. |
RESERVATIONID |
uniqueidentifier |
|
RESERVATION.ID
|
The constituent record to which this note belongs. |
ADDEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
CHANGEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
Indexes
Index Name |
Fields |
Unique |
Primary |
Clustered |
IX_RESERVATIONNOTE_AUTHORID |
AUTHORID |
|
|
|
IX_RESERVATIONNOTE_DATEADDED |
DATEADDED |
|
|
yes |
IX_RESERVATIONNOTE_DATECHANGED |
DATECHANGED |
|
|
|
IX_RESERVATIONNOTE_RESERVATIONID |
RESERVATIONID |
|
|
|
PK_RESERVATIONNOTE |
ID |
yes |
yes |
|
Triggers