Each record represents a parent-child relationship
(e.g. a folder-item relationship) between two items in a digital
wallet.
Column Descriptions:
| Name | Type | Description |
| WALLETITEM_ID_PNT | BIGINT NOT NULL | The internal identifier of the parent wallet
item. |
| WALLETITEM_ID_CHD | BIGINT NOT NULL | The internal identifier of the child wallet
item. |
| TYPE | SMALLINT NOT NULL | The relationship type. Non-positive values are
reserved for IBM internal use.
|
| OPTCOUNTER | SMALLINT NOT NULL DEFAULT 0 | The optimistic concurrency control counter for
the table. Every time there is an update to the table, the counter
is incremented. |
Indexes:
| Name | Column Names | Type |
| <SYSTEM-GENERATED> | WALLETITEM_ID_PNT+WALLETITEM_ID_CHD+TYPE | Primary Key |
| I0001325 | WALLETITEM_ID_CHD | Non-Unique Index |
Constrained By Parent Tables:
| Constraint | Columns | Parent Table | Parent Columns | Type |
| F_3616 | WALLETITEM_ID_PNT | WALLETITEM | WALLETITEM_ID | Cascade |
| F_3617 | WALLETITEM_ID_CHD | WALLETITEM | WALLETITEM_ID | Cascade |