| Table: dbo.Record_Status | |||
| Generic status table that houses the types that define if a given record is active, inactive or virtually deleted. | |||
| Columns | |||
| Name | Type | Constraints | Description |
| record_status_KEY | int (4) | NOT NULL | Primary key for this table |
| description | nvarchar (40) | NOT NULL | The status of a record. Active, Inactive or Deleted. |
| Primary key | |||
| Name | Columns | Description | |
| PK_Record_Status | record_status_KEY | ||
| Unique constraints | |||
| Name | Columns | Description | |
| UK_Record_Status$description | description | ||