Each row of this table represents an ItemVersion for a BaseItem. An ItemVersion expires when its expiration date is in the past. Each BaseItem must only have a single ItemVersion defined.
Column Descriptions
| Column Name
| Column Type
| Description |
| ITEMVERSN_ID
| BIGINT NOT NULL
| Generated primary key.
|
| LASTUPDATE
| TIMESTAMP
| The time this ItemVersion was most recently updated.
|
| BASEITEM_ID
| BIGINT NOT NULL
| The BaseItem for this ItemVersion.
|
| EXPIRATIONDATE
| TIMESTAMP NOT NULL
| The time this ItemVersion expires.
|
| VERSIONNAME
| CHAR(30) NOT NULL DEFAULT 'Version 1'
| Uniquely identifies this ItemVersion for its BaseItem.
|
| OPTCOUNTER
| SMALLINT
| Reserved for IBM internal use.
|