MERCHANDISEDEPARTMENT

A department to which specific merchandise items belong.

Primary Key

Primary Key Field Type
ID uniqueidentifier

Fields

Field Field Type Null Notes Description
NAME nvarchar(100) Default = '' The department name.
DESCRIPTION nvarchar(255) Default = '' The department description.
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.
ISACTIVE bit Default = 1 Determines whether the department is active.
ISDISCOUNTABLE bit Default = 1 Determines whether merchandise items belong to this department can be discounted.

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_MERCHANDISEDEPARTMENT_DATEADDED DATEADDED yes
IX_MERCHANDISEDEPARTMENT_DATECHANGED DATECHANGED
PK_MERCHANDISEDEPARTMENT ID yes yes
UC_MERCHANDISEDEPARTMENT_NAME NAME yes

Triggers

Trigger Name Description
TR_MERCHANDISEDEPARTMENT_AUDIT_UPDATE
TR_MERCHANDISEDEPARTMENT_AUDIT_DELETE

Referenced by

Referenced by Field
DISCOUNTGROUPDETAILMERCHANDISEDEPARTMENT MERCHANDISEDEPARTMENTID
MERCHANDISEDEPARTMENTCATEGORY MERCHANDISEDEPARTMENTID
MERCHANDISEPRODUCT MERCHANDISEDEPARTMENTID
SALESORDERITEMMERCHANDISE MERCHANDISEDEPARTMENTID