ChecklistItemAssigned


Description

Checklist item assignments managing assignments of checklist items to users, teams, and roles. This table tracks who is responsible for completing specific checklist items with support for individual, team, and role-based assignments for flexible workflow management and responsibility distribution.

Columns

Column Type Size Nulls Auto Default Children Parents Comments
ID int identity 4 null

Primary key - Unique identifier for each item assignment

fkChecklistItem int 4 null

Checklist item reference - Links to CheckListItems for the assigned item

fkUserID int 4 null

User reference - Links to AccessUser table for individual assignments

fkTeamID int 4 null

Team reference - Links to team for team-based assignments

fkRoleID uniqueidentifier 16 null

Role reference - Links to role for role-based assignments

fkAssignedRoleID uniqueidentifier 16 null

Assigned role reference - Links to the specific assigned role

Indexes

Constraint Name Type Sort Column(s)
PK_ChecklistItemAssigned Primary key Asc ID
IX_ChecklistItem Performance Asc fkChecklistItem

Relationships