Primary Key Field Type
 ID uniqueidentifier

Field Field Type Null Notes Description
 NAME nvarchar(60)   Default = '' The name of the grading scale.
 ISACTIVE bit   Default = 1 Indicates if the grading scale is active.
 DESCRIPTION nvarchar(150)   Default = '' The description of the grading scale.
 ISREGISTRARCREATED bit   Default = 0 Indicates if the grading scale was created by a registrar.
 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.

Foreign Key Field Type Null Notes Description
 FACULTYID uniqueidentifier FACULTY.ID The faculty who created the grading scale for non-registrar grading scales.
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.

Index Name Field(s) Unique Primary Clustered
 IX_GRADINGSCALE_DATEADDED DATEADDED    
 IX_GRADINGSCALE_DATECHANGED DATECHANGED      
 PK_GRADINGSCALE ID  

Trigger Name Description
 TR_GRADINGSCALE_AUDIT_UPDATE
 TR_GRADINGSCALE_AUDIT_DELETE

Referenced by Field
 CLASSCATEGORY GRADINGSCALEID
 GRADINGSCALEGRADE GRADINGSCALEID

Entity-Relationship diagram of this table