ACADEMICCATALOGDEPARTMENT
                                        An academic catalog department 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 department. | 
                                                
                                                    | CURRENTID | uniqueidentifier | yes |  | The most current department record. | 
                                                
                                                    | DATEFROM | UDT_FUZZYDATE |  | Default = '00000000' | The date the department began. | 
                                                
                                                    | DATETO | UDT_FUZZYDATE |  | Default = '00000000' | The date the department became historical. | 
                                                
                                                    | COMMENT | nvarchar(500) |  | Default = '' | Comments about the department being historical. | 
                                                
                                                    | ISHISTORICAL | bit |  | Default = 0 | Indicates if this department 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 | 
                                            
                                            
                                                
                                                    | ACADEMICCATALOGCOLLEGEID | uniqueidentifier | yes | ACADEMICCATALOGCOLLEGE.ID | A foreign key to the academic catalog college table. | 
                                                
                                                    | ADDEDBYID | uniqueidentifier |  | CHANGEAGENT.ID | FK to CHANGEAGENT. | 
                                                
                                                    | CHANGEDBYID | uniqueidentifier |  | CHANGEAGENT.ID | FK to CHANGEAGENT. | 
                                                
                                                    | SCHOOLID | uniqueidentifier | yes | SCHOOL.ID | A foreign key to the school table. | 
                                                
                                                    | ACADEMICCATALOGDIVISIONID | uniqueidentifier | yes | ACADEMICCATALOGDIVISION.ID | A foreign key to the academic catalog division table. | 
                                            
                                        
                                        Indexes
                                        
                                            
                                                
                                                    | Index Name | Fields | Unique | Primary | Clustered | 
                                            
                                            
                                                
                                                    | IX_ACADEMICCATALOGDEPARTMENT_DATEADDED | DATEADDED |  |  | yes | 
                                                
                                                    | IX_ACADEMICCATALOGDEPARTMENT_DATECHANGED | DATECHANGED |  |  |  | 
                                                
                                                    | PK_ACADEMICCATALOGDEPARTMENT | ID | yes | yes |  | 
                                            
                                        
                                        Triggers
                                        
                                        Referenced by