Columns
| Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments |
|---|---|---|---|---|---|---|---|---|
| pkID | int identity | 4 | √ | null |
|
|
Primary key - Unique identifier for each tag association |
|
| fkTagID | int | 4 | √ | null |
|
|
Tag reference - Links to the tag being applied |
|
| TableField | nvarchar | 100 | √ | null |
|
|
Target table field - Name of the database table and field being tagged |
|
| FieldID | int | 4 | √ | null |
|
|
Field identifier - Specific identifier for the field being tagged |
|
| Comments | nvarchar | 1073741823 | √ | null |
|
|
Tag comments - Additional comments or notes about the tag application |
|
| CreatedBy | int | 4 | √ | null |
|
|
Created by user - UserID of the person who applied the tag |
|
| DateCreated | datetime | 16,3 | √ | null |
|
|
Creation date - Date and time when the tag was applied |
|
| UpdatedBy | int | 4 | √ | null |
|
|
Updated by user - UserID of the person who last updated the tag |
|
| DateUpdated | datetime | 16,3 | √ | null |
|
|
Update date - Date and time when the tag was last updated |
|
| Deleted | bit | 1 | null |
|
|
Deletion flag - Flag indicating if the tag association has been deleted |
Indexes
| Constraint Name | Type | Sort | Column(s) |
|---|---|---|---|
| PK_Tags | Primary key | Asc | pkID |
