Primary Key Field Type
 ID uniqueidentifier

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) CONVERT(bigint, TS) Numeric representation of the timestamp.
 ISACTIVE bit   Default = 1 Determines whether the department is active.
 ISTAXABLE bit   Default = 1 Determines whether the merchandise items belonging to this department are taxable.
 ISDISCOUNTABLE bit   Default = 1 Determines whether merchandise items belong to this department can be discounted.

Foreign Key Field Type Null Notes Description
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.

Index Name Field(s) Unique Primary Clustered
 IX_MERCHANDISEDEPARTMENT_DATEADDED DATEADDED    
 IX_MERCHANDISEDEPARTMENT_DATECHANGED DATECHANGED      
 PK_MERCHANDISEDEPARTMENT ID  
 UC_MERCHANDISEDEPARTMENT_NAME NAME    

Trigger Name Description
 TR_MERCHANDISEDEPARTMENT_AUDIT_UPDATE
 TR_MERCHANDISEDEPARTMENT_AUDIT_DELETE

Referenced by Field
 DISCOUNTGROUPDETAILMERCHANDISEDEPARTMENT MERCHANDISEDEPARTMENTID
 MERCHANDISEDEPARTMENTCATEGORY MERCHANDISEDEPARTMENTID
 MERCHANDISEPRODUCT MERCHANDISEDEPARTMENTID
 SALESORDERITEMMERCHANDISE MERCHANDISEDEPARTMENTID

Entity-Relationship diagram of this table