| Table: dbo.Zero_Hours_Code | |||
| This table stores the zero hours codes and their descriptions. These are explanations of why an employee may have wages without having any hours. | |||
| Columns | |||
| Name | Type | Constraints | Description |
| zero_hours_code_KEY | tinyint (1) | NOT NULL | the primary key of this table. |
| zero_hours_code | nvarchar (4) | NOT NULL | The zero hour code. |
| description | nvarchar (240) | NOT NULL | The zero hours code description. |
| Primary key | |||
| Name | Columns | Description | |
| PK_Zero_Hours_Code | zero_hours_code_KEY | ||
| Unique constraints | |||
| Name | Columns | Description | |
| UK_Zero_Hours_Code$zero_hours_code | zero_hours_code | ||
| Incoming foreign keys | |||
| Name | Columns | Referencing table | Description |
| FK_Employee_Reconciliation_Tax_Form_Tax_Jurisdiction_Override__Zero_Hours_Code__zero_hours_code_KEY | zero_hours_code_KEY | Employee_Reconciliation_Tax_Form_Tax_Jurisdiction_Override | |