FACULTY
                                        Indicates that a constituent is a faculty member and contains faculty-specific fields.  
                                        Primary Key
                                        
                                            
                                                
                                                    | Primary Key | Field Type | 
                                            
                                            
                                                
                                                    | ID | uniqueidentifier | 
                                            
                                        
                                        Fields
                                        
                                            
                                                
                                                    | Field | Field Type | Null | Notes | 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) | yes | CONVERT(bigint, TS) | Numeric representation of the timestamp. | 
                                                
                                                    | ISADVISOR | bit |  | Default = 0 | Identifies if the faculty is an advisor. | 
                                                
                                                    | HIREDONDATE | date | yes |  | The date the faculty member is hired. | 
                                                
                                                    | TERMINATED | bit |  | Default = 0 | Indicates whether or not the record is inactive. | 
                                                
                                                    | TERMINATEDONDATE | date | yes |  | The date the faculty member is terminated. | 
                                            
                                        
                                        Foreign Keys
                                        
                                            
                                                
                                                    | Foreign Key | Field Type | Null | Notes | Description | 
                                            
                                            
                                                
                                                    | ID | uniqueidentifier |  | CONSTITUENT.LOCALID | Primary Key. | 
                                                
                                                    | ADDEDBYID | uniqueidentifier |  | CHANGEAGENT.ID | FK to CHANGEAGENT. | 
                                                
                                                    | CHANGEDBYID | uniqueidentifier |  | CHANGEAGENT.ID | FK to CHANGEAGENT. | 
                                                
                                                    | FACULTYSTATUSCODEID | uniqueidentifier | yes | FACULTYSTATUSCODE.ID | Indicates the current status of the faculty member. | 
                                            
                                        
                                        Indexes
                                        
                                            
                                                
                                                    | Index Name | Fields | Unique | Primary | Clustered | 
                                            
                                            
                                                
                                                    | IX_FACULTY_DATEADDED | DATEADDED |  |  | yes | 
                                                
                                                    | IX_FACULTY_DATECHANGED | DATECHANGED |  |  |  | 
                                                
                                                    | PK_FACULTY | ID | yes | yes |  | 
                                            
                                        
                                        Triggers
                                        
                                        Referenced by