| Table: dbo.Employee_Type | |||
| Table used to store the status of the an employee record. | |||
| Columns | |||
| Name | Type | Constraints | Description |
| employee_type_KEY | int (4) | NOT NULL | Integer value representing the status. |
| description | nvarchar (60) | NOT NULL | Description of the employee status. |
| Primary key | |||
| Name | Columns | Description | |
| PK_Employee_Type | employee_type_KEY | ||
| Unique constraints | |||
| Name | Columns | Description | |
| UK_Employee_Type$description | description | ||
| Incoming foreign keys | |||
| Name | Columns | Referencing table | Description |
| FK_Employee__Employee_Type__employee_type_KEY | employee_type_KEY | Employee | |