Primary Key Field Type
 ID uniqueidentifier

Field Field Type Null Notes Description
 USERID nvarchar(50)   Default = '' The unique user defined ID.
 NAME nvarchar(150)   Default = '' The name of the college.
 CURRENTID uniqueidentifier The most current degree record.
 DATEFROM UDT_FUZZYDATE   Default = '00000000' The date the degree began.
 DATETO UDT_FUZZYDATE   Default = '00000000' The date the degree became historical.
 COMMENT nvarchar(500)   Default = '' Comments about the degree being historical.
 ISHISTORICAL bit   Default = 0 Indicates if this record has been made historical.
 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
 ACADEMICCATALOGPROGRAMID uniqueidentifier   ACADEMICCATALOGPROGRAM.ID A foreign key to the academic catalog program table.
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.

Index Name Field(s) Unique Primary Clustered
 IX_ACADEMICCATALOGDEGREE_DATEADDED DATEADDED    
 IX_ACADEMICCATALOGDEGREE_DATECHANGED DATECHANGED      
 PK_ACADEMICCATALOGDEGREE ID  
 UIX_ACADEMICCATALOGDEGREE_ACADEMICCATALOGPROGRAMID_USERID ACADEMICCATALOGPROGRAMID, USERID    

Trigger Name Description
 TR_ACADEMICCATALOGDEGREE_AUDIT_UPDATE
 TR_ACADEMICCATALOGDEGREE_AUDIT_DELETE

Referenced by Field
 ACADEMICCATALOGCOLLEGE ACADEMICCATALOGDEGREEID
 BATCHCONSTITUENT EDUCATIONALHISTORY_ACADEMICCATALOGDEGREEID
 BATCHEDUCATIONALHISTORYUPDATE ACADEMICCATALOGDEGREEID
 EDUCATIONALHISTORY ACADEMICCATALOGDEGREEID

Entity-Relationship diagram of this table