ACADEMICCATALOGDEGREE
                                        An academic catalog degree is represented by a row in this table.  
                                        Primary Key
                                        
                                            
                                                
                                                    | Primary Key | Field Type | 
                                            
                                            
                                                
                                                    | ID | uniqueidentifier | 
                                            
                                        
                                        Fields
                                        
                                            
                                                
                                                    | 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 | yes |  | 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) | yes | CONVERT(bigint, TS) | Numeric representation of the timestamp. | 
                                            
                                        
                                        Foreign Keys
                                        
                                            
                                                
                                                    | 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. | 
                                            
                                        
                                        Indexes
                                        
                                            
                                                
                                                    | Index Name | Fields | Unique | Primary | Clustered | 
                                            
                                            
                                                
                                                    | IX_ACADEMICCATALOGDEGREE_DATEADDED | DATEADDED |  |  | yes | 
                                                
                                                    | IX_ACADEMICCATALOGDEGREE_DATECHANGED | DATECHANGED |  |  |  | 
                                                
                                                    | PK_ACADEMICCATALOGDEGREE | ID | yes | yes |  | 
                                                
                                                    | UIX_ACADEMICCATALOGDEGREE_ACADEMICCATALOGPROGRAMID_USERID | ACADEMICCATALOGPROGRAMID, USERID | yes |  |  | 
                                            
                                        
                                        Triggers
                                        
                                        Referenced by