Contains the relationship between an article and a case
Data model

Fields
Field |
Type |
Description |
article_id* |
INT |
Related article ID, reference table ASS_ARTICLE.id |
author_id |
INT |
Identifier of the user who created the relationship, references the table AFW_USERS.user_id |
created_date |
DATETIME |
Date the relationship was created |
item_id* |
INT |
Related case ID, reference table ASDK_ITEM.id |
relation_type_id* |
INT |
Relationship type identifier, reference the RELATION_TYPE.id table |
Primary Key
PK_ASDK_ITEM_ARTICLE |
item_id, article_id, relation_type_id |
References
Column |
Referenced Table |
Referenced column |
Name |
article_id* |
dbo.ASS_ARTICLE |
id |
FK01_ASDK_ITEM_ARTICLE |
item_id* |
dbo.ASDK_ITEM |
id |
FK02_ASDK_ITEM_ARTICLE |
relation_type_id* |
Bod. ASMS_RELATION_TYPE |
id |
FK03_ASDK_ITEM_ARTICLE |